import type { Snippet } from 'svelte';
import type { SvelteMarkdownOptions } from '../types.js';
interface Props {
    depth: number;
    raw: string;
    text: string;
    options: SvelteMarkdownOptions;
    slug: (val: string) => string;
    children?: Snippet;
}
declare const Heading: import("svelte").Component<Props, {}, "">;
type Heading = ReturnType<typeof Heading>;
export default Heading;
