import { TypeNull } from '../types/type-null'; import { Primitive } from './primitive'; export declare class Null extends Primitive { type: typeof TypeNull; value: null; toJS(): null; }