import type { ProviderStatus } from "../../types.js"; export interface SearchKeyStatus { provider: string; active: boolean; configured: boolean; source: string; maskedKey?: string | undefined; keyCount?: number | undefined; maskedKeys?: readonly string[] | undefined; activeMaskedKey?: string | undefined; keyDisabled?: readonly boolean[] | undefined; } /** Render credential metadata without ever including an unmasked secret. */ export declare function formatKeyStatus(llm: ProviderStatus[], search: SearchKeyStatus[]): string;