import type { SlashCommandRuntime } from "../types"; /** * List every provider's stored OAuth accounts, marking which row each * currently-tracked session is using. */ export declare function buildCredentialListText(runtime: SlashCommandRuntime): Promise; /** * Switch the running session's stored OAuth credential for a provider, * independent of quota state. Returns the confirmation/error text to show * the user; never throws. */ export declare function switchSessionCredentialCommand(runtime: SlashCommandRuntime, args: string): Promise;