import { ComponentProps, ReactNode } from "react"; import { InternalProps, OmitInternalProps, StyledComponentProps } from "../../shared"; import { ResponsiveProp } from "../../styling"; declare const DefaultElement = "p"; export interface InnerParagraphProps extends InternalProps, StyledComponentProps { /** * React children */ children: ReactNode; /** * A paragraph can vary in size. */ size?: ResponsiveProp<"xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "inherit">; } export declare function InnerParagraph(props: InnerParagraphProps): JSX.Element; export declare namespace InnerParagraph { var defaultElement: string; } /** * A paragraph is used to render blocks of text. * * [Documentation](https://orbit.sharegate.design/?path=/docs/paragraph--size) */ export declare const Paragraph: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type ParagraphProps = ComponentProps; export {};