/** * Heading Component * * Fluid typography using clamp() for smooth scaling across viewports. * Follows CREATE SOMETHING standards for "less, but better" aesthetic. * * @see /STANDARDS.md - Section 1.1 Typography */ type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6; type FluidScale = 'canonical' | 'custom'; interface Props { level: HeadingLevel; fluidScale?: FluidScale; min?: string; max?: string; class?: string; children?: import('svelte').Snippet; } declare const Heading: import("svelte").Component; type Heading = ReturnType; export default Heading;