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