import { default as React } from 'react'; import { FileInputProps } from 'react-admin'; /** * Allows you to define an input field inside which you can upload one or more files. * * @example * */ declare function AttachmentInput({ children, multiple, disabled, type, ...props }: AttachmentInputProps): JSX.Element; type AttachmentInputProps = FileInputProps & { children?: React.ReactNode; disabled?: boolean; source?: string; type?: 'file' | 'image' | 'attachment'; }; export { AttachmentInput }; export type { AttachmentInputProps }; //# sourceMappingURL=AttachmentInput.d.ts.map