import { type BaseTextProps } from "./BaseText"; export type ParagraphProps = BaseTextProps<"p">; export declare function Paragraph({ children, ...restProps }: ParagraphProps): import("react").JSX.Element;