import { IToken } from "./i-token";
import Comment from "@drewsonne/maya-dates/lib/comment";
export declare abstract class Token<T> implements IToken {
    value: T;
    constructor(value: T);
    abstract equal(otherToken: IToken): boolean;
    toString(): string;
    comment: Comment | undefined;
}
//# sourceMappingURL=base.d.ts.map