import React from 'react'; import { Props as LinkProps } from '../link/link'; type AnchorProps = Omit, keyof LinkProps>; interface Props { title?: string; url?: string; showFullLink?: boolean; invert?: boolean; anchorProps?: AnchorProps; className?: string; } declare const defaultProps: { className: string; showFullLink: boolean; anchorProps: AnchorProps; invert: boolean; }; type NativeAttrs = Omit, keyof Props>; export type ImageBrowserProps = Props & typeof defaultProps & NativeAttrs; declare const _default: React.ComponentType & Omit, "className" | "showFullLink" | "invert" | "anchorProps">>; export default _default;