import { TextBaseProps } from '../base/textBase'; /** * Props for H2. * Extends TextBaseProps except component. * * @category Typography */ export type H2Props = Omit; /** * H2 semantic heading. * Renders native h2 element with default headlineMedium font. * * @function * @param props - Typography props. * * @category Typography */ export declare const H2: import('react').ForwardRefExoticComponent>;