export interface UseCommonFileUploadProps { buildingId: number; acceptedFileTypes: string; multiple?: boolean; handleFileUpload: (file: globalThis.File) => Promise; onUploadSuccess?: () => void; onUploadError?: (error: Error) => void; } export declare function useCommonFileUpload({ buildingId, acceptedFileTypes, multiple, handleFileUpload, onUploadSuccess, onUploadError }: UseCommonFileUploadProps): { handleAddFile: () => void; }; //# sourceMappingURL=useCommonFileUpload.d.ts.map