export interface HeadingProps extends HTMLAttributes<HTMLElement> {
    children: Snippet;
    tag?: HeadingVariants['tag'];
}
import type { HTMLAttributes } from 'svelte/elements';
import type { Snippet } from 'svelte';
import type { HeadingVariants } from './theme.js';
declare const Heading: import("svelte").Component<HeadingProps, {}, "">;
type Heading = ReturnType<typeof Heading>;
export default Heading;
