import React from 'react'; import { Props as LinkProps } from "../link/link"; export type ImageAnchorProps = Omit, keyof LinkProps>; interface Props { title?: string; url?: string; showFullLink?: boolean; invert?: boolean; anchorProps?: ImageAnchorProps; className?: string; } type NativeAttrs = Omit, keyof Props>; export type ImageBrowserProps = Props & NativeAttrs; declare const ImageBrowser: React.ForwardRefExoticComponent & import("../use-scale").ScaleProps, "ref"> & React.RefAttributes>; export default ImageBrowser;