import { HTMLAttributes } from "@builder.io/qwik";
import { type BaseTypographyProps } from "./base";
type HeadingSize = "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
export interface HeadingProps extends BaseTypographyProps, Omit, "class" | "ref"> {
as: HeadingSize;
}
export declare const Heading: (props: import("@builder.io/qwik").PublicProps>, key: string | null, flags: number, dev?: import("@builder.io/qwik").DevJSX | undefined) => import("@builder.io/qwik").JSXOutput;
export {};