import type { PropsWithIsTabledAttribute } from '../../../interfaces/renderProps.interface'; export interface AttachmentFileDropBoxProps extends PropsWithIsTabledAttribute { file: File | null; onDrop: (item: { files: any[]; }) => void; errorMessage: string; readOnly: boolean; } declare function AttachmentFileDropBox(props: AttachmentFileDropBoxProps): import("react/jsx-runtime").JSX.Element; export default AttachmentFileDropBox;