import { ReactNode } from 'react'; export type TextProps = { /** * Content */ children?: ReactNode; size?: 36 | 32 | 24 | 20 | 18 | 16 | 14 | 12 | 10 | 'inherit'; weight?: 'regular' | 'medium' | 'bold'; italic?: boolean; color?: 'T1' | 'T6' | 'T7' | 'T8' | 'T9' | 'inherit'; /** * Tag that will be rendered */ tagName?: keyof JSX.IntrinsicElements; className?: string; testId?: string; }; export declare const Text: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=Text.d.ts.map