import { ComponentProps } from 'react'; import { CSS } from './lib/stitches.config.js'; import { T as Text } from './Text-b4dbb448.js'; import { VariantProps } from '@stitches/react'; declare const DEFAULT_TAG = "p"; declare type ParagraphSizeVariants = '1' | '2' | '3' | '4' | '5' | '6'; declare type ParagraphWeightVariants = '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9'; declare type ParagraphVariants = { size?: ParagraphSizeVariants; weight?: ParagraphWeightVariants; } & Omit, 'size'>; declare type ParagraphProps = ComponentProps & ParagraphVariants & { css?: CSS; as?: any; }; export { ParagraphWeightVariants as P, ParagraphProps as a };