/** * Copyright (c) 2026, Salesforce, Inc., * All rights reserved. * For full license text, see the LICENSE.txt file */ import { type QuerySession } from "../lib/session.js"; export declare function queryAssign(sessionId: string, specs: { path: string; value: string; }[], setDefault?: boolean): void; export declare function queryUnassign(sessionId: string, rawPath: string): void; export declare function queryDefine(sessionId: string, rest: string[]): void; export declare function defineAtPath(session: QuerySession, cleanName: string, rawPath: string, defaultValue?: string): void;