import { ReactNode } from 'react'; import { CSSObject } from '@emotion/react'; import { Theme } from '../../Identity/Theme'; import { TextProps } from '../Text'; export declare enum LinkVariant { PRIMARY = "primary", SECONDARY = "secondary" } export interface LinkProps extends TextProps { variant?: LinkVariant; targetBlank?: Boolean; children?: ReactNode; } export declare const linkStyle: (theme: Theme, props: LinkProps) => CSSObject; export declare const filterLinkProps: (props: LinkProps) => Object; export declare const Link: ({ targetBlank, ...props }: LinkProps) => import("@emotion/react/jsx-runtime").JSX.Element; //# sourceMappingURL=Link.d.ts.map