import { ReactNode } from "react"; export type HeadingElement = "h1" | "h2" | "h3" | "h4" | "h5" | "h6"; export interface HeadingProps extends React.HTMLAttributes { /** * Level of Heading * `"h1" | "h2" | "h3" | "h4" | "h5" | "h6"` */ level?: HeadingElement; /** * Apply Bootstrap utility Class * `"h1" | "h2" | "h3" | "h4" | "h5" | "h6"` */ headingStyle?: HeadingElement; /** * Text to render */ children: ReactNode; /** * Optional class for styling purpose */ className?: string; } /** * Heading component to display heading elements */ declare const Heading: import("react").ForwardRefExoticComponent>; export default Heading;