import { type HTMLAttributes } from 'svelte/elements'; interface Props extends HTMLAttributes { level?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; } declare const Heading: import("svelte").Component; type Heading = ReturnType; export default Heading;