import { type ReactNode, type HTMLAttributes } from "react"; export type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6; export interface HeadingProps extends HTMLAttributes { level?: HeadingLevel; as?: `h${HeadingLevel}`; description?: ReactNode; bordered?: boolean; children: ReactNode; } export declare const Heading: import("react").ForwardRefExoticComponent>;