1 | import type { Assign } from "@ark-ui/react";
|
2 | import { type HTMLChakraProps, type RecipeProps } from "../../styled-system";
|
3 | export interface TextProps extends Assign<HTMLChakraProps<"p">, RecipeProps<"text">> {
|
4 | }
|
5 | export declare const Text: import("react").ForwardRefExoticComponent<TextProps & import("react").RefAttributes<HTMLParagraphElement>>;
|
6 | export declare const TextPropsProvider: React.Provider<TextProps>;
|