import type { Session } from '@ms-cloudpack/common-types'; import type { TaskReporter } from '@ms-cloudpack/task-reporter'; import type { CommandExitParams } from '../../types/CommandAction.js'; type SessionWithRequiredApiServer = Session & { urls: { apiServer: string; }; }; /** * Get a single active session to link packages. * The session must have an API server URL. */ export declare function getSessionToLink(options: { reporter: TaskReporter; /** Cache path from CLI options */ cachePath: string | undefined; }): Promise; export {}; //# sourceMappingURL=getSessionToLink.d.ts.map