import * as React from "react"; export interface ImageInputProps { roundedFull?: boolean; onImageUploaded(img: { base64: null | string | ArrayBuffer; file: File; }): void; } declare const ImageInput: ({ roundedFull, onImageUploaded, }: ImageInputProps) => React.ReactElement; export default ImageInput;