import React from 'react'; import { type TextVariantProps } from '@planda/styled-system/recipes'; export type TextProps = TextVariantProps & { children: React.ReactNode; className?: string; } & React.HTMLAttributes; export declare const Text: React.ForwardRefExoticComponent & React.RefAttributes>;