/** * Runtime attestation (ADR 0005 H9). Declares the implementation status * of each runtime export in this module. See CONTRIBUTING.md ยง Module * attestations for the category definitions and the convention for * updating these when sync or rebrand changes the surface. */ export declare const MODULE_ATTESTATIONS: { readonly collectProviderApiKeys: "live"; readonly collectAnthropicApiKeys: "live"; readonly collectGeminiApiKeys: "live"; readonly isApiKeyRateLimitError: "live"; readonly isAnthropicRateLimitError: "live"; readonly isAnthropicBillingError: "live"; }; export declare function collectProviderApiKeys(provider: string): string[]; export declare function collectAnthropicApiKeys(): string[]; export declare function collectGeminiApiKeys(): string[]; export declare function isApiKeyRateLimitError(message: string): boolean; export declare function isAnthropicRateLimitError(message: string): boolean; export declare function isAnthropicBillingError(message: string): boolean;