import { ElementType } from 'react'; import { BaseComponentProps } from '../types.js'; export type TextVariant = 'h1' | 'h2' | 'h3' | 'h4' | 'body' | 'bodyLarge' | 'caption' | 'overline'; export type TextColor = 'default' | 'secondary' | 'muted' | 'primary' | 'accent' | 'error' | 'success' | 'warning'; export interface TextProps extends BaseComponentProps { variant?: TextVariant; color?: TextColor; as?: ElementType; mono?: boolean; weight?: 'normal' | 'medium' | 'semibold' | 'bold'; align?: 'left' | 'center' | 'right'; } export declare function Text({ variant, color, as, mono, weight, align, style, children, ...rest }: TextProps): import('react').ReactElement>; //# sourceMappingURL=text.d.ts.map