export interface InferenceEnvironment { apiToken?: string; projectSlug?: string; openaiApiKey?: string; openaiBaseUrl?: string; anthropicApiKey?: string; googleApiKey?: string; mistralApiKey?: string; } /** * Whether a rendered option list claims the Cloud gateway. Callers use this to * decide if a stored session still needs validating — the gateway is the only * option whose credential the CLI can check itself. */ export declare function advertisesCloudGateway(options: readonly string[]): boolean; /** Return the inference paths the current dev process can use without exposing credentials. */ export declare function listInferenceOptions(environment: InferenceEnvironment): string[]; //# sourceMappingURL=inference-status.d.ts.map