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