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