// / import { BoolProps, GeneratedPropTypes } from '../types'; import { fonts, typography } from '../theme'; declare const miscVariations: { ellipsis: import('styled-components').RuleSet; uppercase: import('styled-components').RuleSet; }; declare type CommonProps = { children?: any | any[]; } & GeneratedPropTypes & BoolProps & BoolProps; export declare type DisplayProps = CommonProps & BoolProps; export declare const Display: import('styled-components').IStyledComponent< 'web', import('styled-components/dist/types').Substitute< Omit< import('react').DetailedHTMLProps, HTMLHeadingElement>, 'ref' > & { ref?: | ((instance: HTMLHeadingElement | null) => void) | import('react').RefObject | null | undefined; }, DisplayProps > >; export declare type TextProps = CommonProps & BoolProps; export declare const Text: import('styled-components').IStyledComponent< 'web', import('styled-components/dist/types').Substitute< Omit< import('react').DetailedHTMLProps< import('react').HTMLAttributes, HTMLParagraphElement >, 'ref' > & { ref?: | ((instance: HTMLParagraphElement | null) => void) | import('react').RefObject | null | undefined; }, TextProps > >; export {};