/** * 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 interface NewSessionOpts { mutation?: boolean; aggregate?: boolean; name?: string; force?: boolean; } export declare function queryNew(orgAlias: string, opts: NewSessionOpts): Promise; export declare function queryClone(sessionId: string, newName?: string, opts?: { force?: boolean; }): { id: string; name?: string; }; export declare function querySessionsList(): void; export declare function querySessionsRm(sessionIdOrName: string): void; export declare function parseDuration(str: string): number; export declare function querySessionsClean(): void; export declare function querySessionsPrune(olderThan: string): void; export declare function formatAge(date: Date): string;