UNPKG

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