import { BaseValue } from "./BaseValue.js"; export declare class VBool extends BaseValue<"Bool", boolean> { value: boolean; readonly type = "Bool"; get publicName(): string; constructor(value: boolean); valueToString(): string; isEqual(other: VBool): boolean; serializePayload(): boolean; static deserialize(value: boolean): VBool; } export declare const vBool: (v: boolean) => VBool; //# sourceMappingURL=VBool.d.ts.map