export interface StatementUploadDropZoneProps { name: string; autoOpenFilePicker?: boolean; errorMessage?: string; isDisabled?: boolean; isUploading?: boolean; sizeLimit?: number; supportingText?: string; onFilesSelected: (files: File[]) => void; onFilePickerOpenedOnce?: () => void; onFileSizeError?: (isError: boolean) => void; } /** * Account-recon-only statement upload idle / uploading UI for * `AccountReconDetailsDrawerPageV2`. Owns its own hidden file input and opens * the picker via `ref.click()` — does not change shared file-picker components. */ export default function StatementUploadDropZone({ name, autoOpenFilePicker, errorMessage, isDisabled, isUploading, sizeLimit, supportingText, onFilePickerOpenedOnce, onFileSizeError, onFilesSelected, }: Readonly): import("react/jsx-runtime").JSX.Element;