import { default as React } from 'react'; import { ImageInputProps as RaImageInputProps } from 'react-admin'; type ImageInputProps = { source: string; title?: string; children?: React.ReactNode; multiple?: boolean; } & RaImageInputProps; declare function ImageInput({ children, title, multiple, ...props }: ImageInputProps): JSX.Element; export { ImageInput }; export type { ImageInputProps }; //# sourceMappingURL=ImageInput.d.ts.map