import React from 'react'; export interface TextProps extends React.ComponentProps<'p'> { font?: 'default' | 'mono'; weight?: string; warp?: 'normal' | 'nowrap' | 'pre' | 'pre-wrap'; size?: string; color?: string; lineHeight?: string; } export declare const Text: React.ForwardRefExoticComponent & React.RefAttributes>;