/** * Typography Presets * ------------------ * Ready-made typographic compositions that adapt across breakpoints. */ import { Typography } from './index'; interface HeadingPreset { base: string; responsive?: Record; } declare const HEADING_PRESETS: Record<'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6', HeadingPreset>; export declare const TypographyPresets: { heading(element: HTMLElement, level?: keyof typeof HEADING_PRESETS): Typography; display(element: HTMLElement): Typography; body(element: HTMLElement): Typography; lead(element: HTMLElement): Typography; caption(element: HTMLElement): Typography; code(element: HTMLElement): Typography; blockquote(element: HTMLElement): Typography; }; export {}; //# sourceMappingURL=presets.d.ts.map