import type { ComponentProps, StyledComponent } from '../../styled-system/types'; import { type TextVariantProps } from '../../styled-system/recipes'; type ParagraphProps = TextVariantProps & { as?: React.ElementType; }; export type TextProps = ComponentProps; export declare const Text: StyledComponent<"p", ParagraphProps>; export {};