export declare abstract class base {
    abstract toString(): string;
    abstract valueOf(): number;
    toJSON(): string;
}
