import React from 'react'; export type FileUploadDrawerProps = { open: boolean; identifier: string; accept?: string; dragAreaDescription?: React.ReactNode; title?: React.ReactNode; footer?: React.ReactNode; directory?: boolean; showFinished?: boolean | { withDelete: { disabled: boolean; onDelete: (filePath: string) => Promise; }; }; onClose: () => void; }; export default function FileUploadDrawer({ open, identifier, accept, dragAreaDescription, footer, title, showFinished, directory, onClose, }: FileUploadDrawerProps): import("react/jsx-runtime").JSX.Element;