@tantainnovative/ndpr-toolkit
Version:
Nigerian Data Protection Compliance Toolkit for implementing NDPR and DPA compliant features
18 lines • 659 B
TypeScript
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