import * as React from 'react'; import { BaseHtmlProps, BaseProps } from "../../../utils/types"; import { TextColor } from "../../../common.type"; export declare type ParagraphAppearance = 'default' | 'white' | 'destructive' | 'subtle' | 'disabled'; export interface ParagraphProps extends BaseProps, BaseHtmlProps { children: React.ReactNode; appearance?: ParagraphAppearance; color?: TextColor; } export declare const Paragraph: React.ForwardRefExoticComponent>; export default Paragraph;