/****************************************************************** * Copyright (C) 2021 LvChengbin * * File: Image/index.tsx * Author: LvChengbin * Time: 06/15/2021 * Description: ******************************************************************/ declare type BooleanStr = 'true' | 'false'; export interface ImageProps { className?: string; src: string; alt?: string; title: string; width?: number | string; height?: number | string; maxWidth?: number | string; maxHeight?: number | string; inline?: boolean | BooleanStr; float?: 'left' | 'right' | 'none'; align?: 'left' | 'right' | 'center'; zoomable?: boolean | BooleanStr; } export default function Image(props: ImageProps): JSX.Element; export {};