/** * ------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. * See License in the project root for license information. * ------------------------------------------------------------------------------------------- */ import { UntypedNode } from "./untypedNode.js"; /** Defines the interface for defining an untyped object value. */ export interface UntypedObject extends UntypedNode { /** * Gets the value of the UntypedNode as a Record. */ getValue(): Record; } /** * Type guard to assert that an object instance is an UntypedObject. * @param node The object to check. * @returns boolean indicating if the node is an UntypedObject. */ export declare const isUntypedObject: (node: UntypedNode) => node is UntypedObject; /** * Factory to create an UntypedObject from a Record. * @param value The Record value to create from. * @returns The created UntypedObject. */ export declare const createUntypedObject: (value: Record) => UntypedObject; //# sourceMappingURL=untypedObject.d.ts.map