import { default as React } from 'react'; import { StyleProps, PolymorphicProps } from '../../style-engine'; declare const textStyles: import('../../style-engine').StylesDef<{ size: { xs: string; sm: string; base: string; lg: string; xl: string; '2xl': string; '3xl': string; '4xl': string; }; weight: { light: string; normal: string; medium: string; semibold: string; bold: string; extrabold: string; }; color: { readonly default: "text-foreground"; readonly white: "text-white"; readonly primary: "text-primary"; readonly secondary: "text-secondary"; readonly accent: "text-accent"; readonly muted: "text-muted"; readonly success: "text-success"; readonly warning: "text-warning"; readonly danger: "text-danger"; readonly info: "text-info"; readonly gradient: "text-gradient-ui"; }; align: { left: string; center: string; right: string; justify: string; }; }>; type TextVariantProps = StyleProps; export type TextProps = PolymorphicProps; export declare function Text({ as, size, weight, color, align, className, children, ...props }: TextProps): React.JSX.Element; export {};