// / import { BoolProps, GeneratedPropTypes } from '../types'; import { fonts, typography } from '../theme'; declare const colorVariations: { default: import('styled-components').RuleSet; }; declare type ColorVariations = BoolProps; export declare type TextLinkProps = { disabled?: boolean; } & ColorVariations & BoolProps & BoolProps & GeneratedPropTypes; export declare const TextLink: import('styled-components').IStyledComponent< 'web', import('styled-components/dist/types').Substitute< Omit< import('react').DetailedHTMLProps< import('react').AnchorHTMLAttributes, HTMLAnchorElement >, 'ref' > & { ref?: | ((instance: HTMLAnchorElement | null) => void) | import('react').RefObject | null | undefined; }, TextLinkProps > >; export {};