import type { Snippet } from 'svelte'; export type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6; export type HeadingSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl'; interface HeadingProps { level?: HeadingLevel; size?: HeadingSize; muted?: boolean; class?: string; children?: Snippet; } declare const Heading: import("svelte").Component; type Heading = ReturnType; export default Heading;