import { IInputGroupProps } from '@blueprintjs/core'; import { CSSProperties, FC } from 'react'; import { InputComponentProps } from '@balgamat/react-autoform'; export declare type ImageProps = InputComponentProps & IInputGroupProps & { imageStyle?: CSSProperties; previewHeight?: number; imageProps: HTMLImageElement; }; export declare const Image: FC;