import "./args.mjs"; import "./client.mjs"; import { z } from "zod"; //#region src/cli/shared/context.d.ts type LoadWorkspaceIdOptions = { workspaceId?: string; profile?: string; }; type LoadAccessTokenOptions = { profile?: string; }; /** * Load workspace ID from command options, environment variables, or platform config. * In CLI context, env fallback is also handled by politty's arg env option. * Priority: opts/workspaceId > env/workspaceId > opts/profile > error * @param opts - Workspace and profile options * @returns Resolved workspace ID */ export declare function loadWorkspaceId(opts?: LoadWorkspaceIdOptions): Promise; /** * Load access token from environment variables, command options, or platform config. * In CLI context, profile env fallback is also handled by politty's arg env option. * Priority: env/TAILOR_PLATFORM_TOKEN > env/TAILOR_TOKEN (deprecated) > opts/profile > env/profile > config/currentUser > error * @param opts - Profile options * @returns Resolved access token */ export declare function loadAccessToken(opts?: LoadAccessTokenOptions): Promise; //#endregion