export interface GlobalContext { currentCommandId: string; } /** * Get the current command ID. * * @returns Current command ID. */ export declare function getCurrentCommandId(): string; /** * Set the current command ID. * * @param commandId - Command ID. */ export declare function setCurrentCommandId(commandId: string): void;