import { Literal } from '../abstract/literal.js';
export declare class NullLiteral extends Literal {
    value: null;
    constructor();
}
