import { BaseProps } from "../../wui-core/src/iCore"; type Noop = () => void; export interface ImageProps extends BaseProps { getPopupContainer?: string | HTMLElement; container?: string | HTMLElement; ready: Noop; show: Noop; shown: Noop; hide: Noop; hidden: Noop; view: Noop; viewed: Noop; zoom: Noop; zoomed: Noop; asyncLoad: boolean; inline?: boolean; button?: boolean; title?: boolean; alt?: boolean; navbar?: boolean; toolbar?: boolean; tooltip?: boolean; movable?: boolean; zoomable?: boolean; rotatable?: boolean; scalable?: boolean; transition?: boolean; fullscreen?: boolean; keyboard?: boolean; interval?: number; zoomRatio?: number; minZoomRatio?: number; maxZoomRatio?: number; zIndex?: number; zIndexInline?: number; url?: string; src?: string; fieldid?: string; } export {};