import { PropsOf } from '@builder.io/qwik'; export type HeadingTag = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; type HeadingProps = PropsOf<'h1'> & { tag?: HeadingTag; }; export declare const Heading: import("@builder.io/qwik").Component; export {};