import type { AgentsSession } from "./session/types.js"; /** Options for {@link resolveAgentsSession}. */ export interface ResolveAgentsSessionOptions { /** Environment profile name; defaults to the configured default env. */ environmentName?: string; /** Base directory for resolving `sitecoreai.cli.json`; defaults to cwd. */ config?: string; } /** A resolved Agentic Studio session plus the environment it is bound to. */ export interface ResolvedAgentsSession { session: AgentsSession; envName: string; } /** * Resolve an Agentic Studio session for an environment — env profile * lookup, then the keychain-backed session load. */ export declare const resolveAgentsSession: (options?: ResolveAgentsSessionOptions) => Promise;