import { Term } from './term.js';
export declare abstract class Literal extends Term {
    value: any;
    protected constructor(value: any);
    toString(): string;
}
