import Token from './token';
/**
 * A non-literal token used to identify object (such as variables, conditions, etc).
 */
export default class Ident extends Token {
    readonly value: string;
    constructor(value: string);
    eq(other: any): boolean;
    static tokenize(tokenString: string): [Ident, string];
    toParenthesisString(): string;
    toJavaScript(): string;
}
//# sourceMappingURL=ident.d.ts.map