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