import * as React from 'react'; import { Text as RNText } from 'react-native'; import { type VariantProps } from 'class-variance-authority'; declare const textVariants: (props?: ({ variant?: "default" | "h1" | "h2" | "h3" | "h4" | "p" | "blockquote" | "code" | "lead" | "large" | "small" | "muted" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type TextVariantProps = VariantProps; declare const TextClassContext: React.Context; type TextProps = React.ComponentProps & TextVariantProps & React.RefAttributes; declare function Text({ className, variant, ...props }: TextProps): import("react/jsx-runtime").JSX.Element; export { Text, TextClassContext, textVariants }; export type { TextProps }; //# sourceMappingURL=text.d.ts.map