import { default as React } from '../../../node_modules/react'; import { MultiTypeColor } from '../../type'; export type TextAlign = 'left' | 'center' | 'right'; export type FontWeight = 'bold' | 'normal'; export type FontStyle = 'italic' | 'normal'; export type TextStyle = { textAlign?: TextAlign; fontFamily: string; fontSize: number; fontColor: MultiTypeColor; fontOpacity: number; fontWeight: FontWeight; fontStyle: FontStyle; letterSpacing: number; lineHeight: number; }; interface TextStyleProps { disabled?: boolean; label: string; tooltip: React.ReactNode; value: TextStyle; name: string; onChange: (name: string, value: unknown) => void; onBlur: (name: string, value: unknown) => void; } export declare const TextStyleGroup: React.FC; export {};