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