import { ComponentProps, default as React } from 'react'; import { SafeOmit } from '../../../.deps/utils/src'; import { PublicTypographyProps } from '../getTypographyProps'; export interface H4Props extends SafeOmit, 'className' | 'style'>, PublicTypographyProps { } export declare function H4({ appearance, ...rest }: H4Props): React.JSX.Element;