/// import { TBaseProps } from '../../types'; export declare enum TextPosition { bottom = "bottom", left = "left", right = "right", top = "top" } export declare enum Shape { circle = "circle", rounded = "rounded", square = "square" } export declare type Props = TBaseProps & { description?: string; height?: number; id: string; onClick?(): void; shape: Shape; src: string; style?: object; textPosition: TextPosition; title?: string; width: string; }; export declare function Image({ id, src, title, description, textPosition, width, height, shape, visible, style: propsStyle, className, onClick, }: Props): JSX.Element | null;