import { FileRejection } from 'react-dropzone'; import { ComponentWithAs as _ } from '@chakra-ui/react'; export interface AttachmentErrorProps { fileRejection: FileRejection; isDisabled?: boolean; isReadOnly?: boolean; handleDismiss: (fileRejection: FileRejection) => void; } export declare const AttachmentError: _<"div", AttachmentErrorProps>;