import * as React from "react"; import type { Props as SvgImageProps } from "./svg-image"; interface Props extends SvgImageProps { initialFocusId: string; onClose: () => void; width: number; height: number; } export declare const ZoomedImageView: (props: Props) => React.JSX.Element; export {};