import React from 'react'; export interface ImageInputProps { onChange: (value: any) => void; value?: File | string; width?: number; height?: number; disabled?: boolean; openRef?: React.ForwardedRef<() => void | undefined>; } export declare function ImageInput(props: ImageInputProps): import("react/jsx-runtime").JSX.Element; export declare namespace ImageInput { var defaultProps: { width: number; height: number; }; }