'use client' import type { SeveritySummary, ScanType } from '../types' interface SecurityHeaderProps { overallStatus: { label: string; color: string } summary: SeveritySummary scanning: string | null onRunScan: (scanType: ScanType) => void } export function SecurityHeader({ overallStatus, summary, scanning, onRunScan }: SecurityHeaderProps) { return (