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