import { FC } from 'react'; import { BlockRenderProps, ImageControlItem } from '../../types'; import { ContentBlock, EditorState } from 'draft-js'; interface ImageProps extends BlockRenderProps { imageEqualRatio: boolean; entityKey: string; block: ContentBlock; imageResizable: boolean; imageControls: readonly ImageControlItem[]; lock: (locked: boolean) => void; getContainerNode: () => HTMLElement; readOnly: boolean; value: EditorState; onChange: (state: EditorState) => void; refresh: () => void; } declare const Image: FC; export default Image;