export * from './lineHeights'; export * from './fontSizes'; export declare const LETTER_SPACINGS: { readonly tighter: "-0.05em"; readonly tight: "-0.025em"; readonly normal: "0"; readonly wide: "0.025em"; readonly wider: "0.05em"; readonly widest: "0.1em"; }; export declare enum CapUILetterSpacing { Tighter = "tighter", Tight = "tight", Normal = "normal", Wide = "wide", Wider = "wider", Widest = "widest" } export type ThemeLetterSpacingsValues = keyof typeof LETTER_SPACINGS | (string & {}) | (number & {}); export declare const FONT_WEIGHTS: { readonly hairline: 100; readonly thin: 200; readonly light: 300; readonly normal: 400; readonly medium: 500; readonly semibold: 600; readonly bold: 700; readonly extrabold: 800; readonly black: 900; }; export declare enum CapUIFontWeight { Hairline = "hairline", Thin = "thin", Light = "light", Normal = "normal", Medium = "medium", Semibold = "semibold", Bold = "bold", Extrabold = "extrabold", Black = "black" } export type ThemeFontWeightsValues = keyof typeof FONT_WEIGHTS | (string & {}) | (number & {}); export declare const FONT_FAMILIES: { readonly heading: "Open Sans, system-ui, sans-serif"; readonly label: "Open Sans, system-ui, sans-serif"; readonly body: "Open Sans, system-ui, sans-serif"; }; export declare enum CapUIFontFamily { Heading = "heading", Label = "label", Body = "body" } export type ThemeFontFamiliesValue = keyof typeof FONT_FAMILIES | (string & {}); declare const typography: { readonly letterSpacings: { readonly tighter: "-0.05em"; readonly tight: "-0.025em"; readonly normal: "0"; readonly wide: "0.025em"; readonly wider: "0.05em"; readonly widest: "0.1em"; }; readonly lineHeights: { readonly S: string; readonly M: string; readonly Normal: "normal"; readonly L: string; readonly XL: string; readonly XXL: string; }; readonly fontWeights: { readonly hairline: 100; readonly thin: 200; readonly light: 300; readonly normal: 400; readonly medium: 500; readonly semibold: 600; readonly bold: 700; readonly extrabold: 800; readonly black: 900; }; readonly fonts: { readonly heading: "Open Sans, system-ui, sans-serif"; readonly label: "Open Sans, system-ui, sans-serif"; readonly body: "Open Sans, system-ui, sans-serif"; }; readonly fontSizes: { readonly Caption: string; readonly BodySmall: string; readonly BodyRegular: string; readonly BodyLarge: string; readonly Headline: string; readonly DisplaySmall: string; readonly DisplayMedium: string; readonly DisplayLarge: string; }; }; export default typography;