import * as Json from "jsonc-parser"; import { YAMLDocument } from "../index"; import { ASTNode } from "./ast-node"; export declare class BooleanASTNode extends ASTNode { constructor(document: YAMLDocument, parent: ASTNode, name: Json.Segment, value: boolean | string, start: number, end?: number); getValue(): boolean | string; }