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