import { Text, type DisplayObjectConfig, type TextStyleProps } from '@antv/g';
/**
 * 自定义 text 图形
 * - 有 appendInfo 属性
 */
export declare class CustomText<T = Record<string, any>> extends Text {
    appendInfo: T;
    constructor(options: DisplayObjectConfig<TextStyleProps>, appendInfo: T);
}
