import type { HTMLAttributes } from 'react'; export type ParagraphProps = { /** * Changes text sizing */ 'data-size'?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; /** * Adjusts styling for paragraph length * @default 'default' */ variant?: 'long' | 'default' | 'short'; /** * Change the default rendered element for the one passed as a child, merging their props and behavior. * @default false */ asChild?: boolean; } & HTMLAttributes; /** * Use `Paragraph` to display text with paragraph text styles. * Renders a native `p` element. * * @example * Paragraph */ export declare const Paragraph: import("react").ForwardRefExoticComponent<{ /** * Changes text sizing */ 'data-size'?: "xs" | "sm" | "md" | "lg" | "xl"; /** * Adjusts styling for paragraph length * @default 'default' */ variant?: "long" | "default" | "short"; /** * Change the default rendered element for the one passed as a child, merging their props and behavior. * @default false */ asChild?: boolean; } & HTMLAttributes & import("react").RefAttributes>; //# sourceMappingURL=paragraph.d.ts.map