import * as React from 'react'; import { PolymorphicComponentProps } from '../Box'; export declare type ParagraphSizeVals = 'leading' | 'default' | 'small' | 'tiny'; export declare type ParagraphOwnProps = { size?: ParagraphSizeVals; }; export declare type ParagraphProps = PolymorphicComponentProps; declare const defaultElement = "p"; export declare const Paragraph: (props: ParagraphProps) => JSX.Element; export {};