import type { CSSProperties } from 'react'; import type { VisTextProps } from './types'; declare const INNER_ENTITY_TYPES: readonly ["metric_name", "metric_value", "other_metric_value", "time_desc", "dim_value", "trend_desc", "delta_value", "ratio_value", "delta_value_pos", "delta_value_neg", "ratio_value_pos", "ratio_value_neg", "proportion", "contribute_ratio"]; export type InnerEntityType = (typeof INNER_ENTITY_TYPES)[number]; export type TextEntityType = InnerEntityType | string; export type TextEncoding = Partial & { /** 前缀 */ prefix: string; /** 后缀 */ suffix: string; }>; export declare const STATICS_KEY: "__statics"; /** 文本组件配置信息 */ export type TextConfig = Record & { [STATICS_KEY]: Record>; }; export declare const DEFAULT_VIS_TEXT_CONFIG: TextConfig; export {};