export interface AttachmentsModalProps {
    /** Support @testing-library/react `screen.getByTestId` */
    'data-testid'?: string;
    isOpen: boolean;
    closeModal: () => void;
    onSubmit: (files: File[] | null) => void;
    id: string;
    className?: string;
}
