import React, { HTMLAttributes } from 'react'; import { StyledProps } from '@harnessio/design-system'; declare type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6 | '1' | '2' | '3' | '4' | '5' | '6'; export interface HeadingProps extends HTMLAttributes, StyledProps { /** Heading level ('1' -> h1, '2' -> h2, ..., '6' -> h6). Default is '1' */ level?: HeadingLevel; } /** * Heading renders consistent H1 to H6 elements. */ export declare function Heading(props: HeadingProps): React.ReactElement; export {};