import type { KlawConfig } from "../../config/types.klaw.js"; export type ModelAuthDetailMode = "compact" | "verbose"; export declare const resolveAuthLabel: (provider: string, cfg: KlawConfig, modelsPath: string, agentDir?: string, mode?: ModelAuthDetailMode, workspaceDir?: string) => Promise<{ label: string; source: string; }>; export declare const formatAuthLabel: (auth: { label: string; source: string; }) => string;