import { HTMLAttributeReferrerPolicy } from 'react'; import { ImageProps } from '../../../../../../../../../src/components/Image'; export interface ImageLinkProps extends ImageProps { href: string; hreflang?: string; referrerpolicy?: HTMLAttributeReferrerPolicy; rel?: string; target?: string; type?: string; } /** * A `ImageLink` is an image that is wrapper in an anchor tag * * @example * * */ export declare const ImageLink: { ({ alt, src, href, hreflang, referrerpolicy, rel, target, type, ...rest }: ImageLinkProps): import("react/jsx-runtime").JSX.Element; displayName: string; };