import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { level?: 1 | 2 | 3 | 4 | 5 | 6; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type HeadingProps = typeof __propDef.props; export declare type HeadingEvents = typeof __propDef.events; export declare type HeadingSlots = typeof __propDef.slots; export default class Heading extends SvelteComponentTyped { } export {};