import * as React from 'react'; import { AnchorLinkVariants } from './anchor-types'; interface IAnchorLink { style?: React.CSSProperties; variant?: AnchorLinkVariants; children?: React.ReactNode; as?: 'a' | 'span'; href?: string; } interface IAnchorLinkAsSpan extends IAnchorLink { as: 'span'; href?: undefined; } interface IAnchorLinkAsA extends IAnchorLink { as?: 'a'; href: string; } export declare const ArrowIcon: () => JSX.Element; export declare const AnchorLink: ({ variant, children, style, href, as }: IAnchorLinkAsSpan | IAnchorLinkAsA) => JSX.Element; export {}; //# sourceMappingURL=AnchorLink.d.ts.map