import { PPPFDocument, PPPFDocumentPATCH } from "../ppp-loans"; declare type FullFile = File & { doc_name?: string; }; export interface UploaderProps { apiUrl?: string; appUuid: string; documentTypes?: Readonly; editable?: boolean; error?: { files: string[]; }; files?: PPPFDocument[]; heading: React.ReactNode; onDocumentDelete?: (docUuid: string) => void; onDocumentErrorClear: () => void; onDocumentsChanged?: (documentChanges: PPPFDocumentPATCH[]) => void; onFiles?: (files: FullFile[]) => void; } export {};