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