import { default as React } from 'react'; import { FileInputProps as RaFileInputProps } from 'react-admin'; /** * FileInput is designed to be used as single input. It does not support multiple files and * can be used only for base64 encoded files using applica framework. * * @example * // If you hav an object class with @File annotation, you can map it to a FileInput: * ... * * * The component will handle create and delete operations related to the source field associated * in conjuction with Applica Framework backend API services. * */ declare function FileInput({ children, title, ...props }: FileInputProps): JSX.Element; type FileInputProps = { source: string; title?: string; children?: React.ReactNode; } & RaFileInputProps; export { FileInput }; export type { FileInputProps }; //# sourceMappingURL=FileInput.d.ts.map