import React from 'react'; import { IFont } from '../fonts'; import { IColor } from '../colors'; export interface LinkProps extends React.HTMLProps { /** Typographic variant. Defines how the text looks like */ font?: IFont; /** Element the button renders as */ element?: 'a' | 'button'; /** Color */ color?: IColor; /** Disabled */ disabled?: boolean; /** Always underline link */ underline?: boolean; } export declare const Link: ({ element, font, color, underline, ...props }: LinkProps) => React.JSX.Element; //# sourceMappingURL=Link.d.ts.map