import { Literal } from '../abstract/literal.js';
export declare class NumberLiteral extends Literal {
    value: number | bigint;
    constructor(value: number | bigint | string);
    toString(): string;
}
