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