import { ReactNode } from 'react'; declare type HeadingType = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; interface Props { /** * @default 'h1' */ as?: HeadingType; className?: string; children?: ReactNode; id?: string; } /** @tossdocs-ignore */ export declare function HiddenHeading({ as, id, className, children }: Props): JSX.Element; export {};