import { BreachSeverity } from '@/types';
interface BreachNotificationFormProps {
    onSubmit: (data: {
        title: string;
        description: string;
        discoveryDate: string;
        affectedDataSubjects: number;
        dataCategories: string[];
        severity: BreachSeverity;
        mitigationSteps: string[];
        reportedToAuthorities: boolean;
        reportedToDataSubjects: boolean;
    }) => void;
    className?: string;
}
export default function BreachNotificationForm({ onSubmit, className, }: BreachNotificationFormProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=BreachNotificationForm.d.ts.map