export declare abstract class ToStringAbstract {
    /** * 字符化 */
    abstract toString(): string;
}
