import { LidoComponentProps } from '../utils/index.js'; export declare enum TextColor { default = 0, secondary = 1, primary = 2, warning = 3, error = 4, success = 5 } export declare type TextColors = keyof typeof TextColor; export declare enum TextSize { xxs = 0, xs = 1, sm = 2, md = 3, lg = 4, xl = 5 } export declare type TextSizes = keyof typeof TextSize; export declare type TextWeight = 400 | 500 | 700 | 800 | string | number; export declare type TextProps = LidoComponentProps<'p', { color?: TextColors; size?: TextSizes; weight?: TextWeight; underline?: boolean; strikeThrough?: boolean; strong?: boolean; italic?: boolean; }>; //# sourceMappingURL=types.d.ts.map