/// import type { RuleSet } from 'styled-components'; import type { Intent, TypographyProps, Weight } from './Typography.types'; export interface StyledTypographyProps { $breakWord?: TypographyProps['intent']; $color?: TypographyProps['color']; $intent?: TypographyProps['intent']; $italic?: TypographyProps['italic']; $weight?: TypographyProps['weight']; } export declare const typographyWeights: { [key in Weight]: number; }; export declare const typographyLineHeight: Record; export declare function getTypographyIntent(intent: Intent): RuleSet; export declare const semiboldRules: () => RuleSet; export declare const StyledTypography: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLSpanElement>, StyledTypographyProps>> & string;