import { TypeBool } from "../types/type-bool"; import { Primitive } from "./primitive"; export declare class Bool extends Primitive { type: typeof TypeBool; toJS(): boolean | null; }