import type { Snippet } from 'svelte';
interface Props {
    children?: Snippet;
    attributes?: Record<string, any>;
}
/** Renders an HTML `<h2>` element. Accepts optional attributes and child content. */
declare const H2: import("svelte").Component<Props, {}, "">;
type H2 = ReturnType<typeof H2>;
export default H2;
