import { default as React } from 'react'; type AllowedDocumentType = "ID_CARD" | "SCHEDULE"; export declare const STUDENT_DOC_TYPES: AllowedDocumentType[]; interface Props { type: AllowedDocumentType; onFileDrop: (files: File[], type?: string) => void; style?: "large" | "small"; } export declare const DocumentTypeUpload: React.FC; export {};