/// export interface ITextLabel { index?: number; offset?: number; word?: string; backgroundColor?: string; opacity?: number; style?: React.CSSProperties; className?: string; [key: string]: any; } export declare type ITextRuntimeLabel = ITextLabel & { relate: ITextLabel & { labelUniqId: number; }; }; export declare type ITextLabelWithRelate = ITextLabel & { relates: ITextLabel[]; };