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