import type { AccountAllowlist } from "../types/index.js"; export declare const LEGACY_ANTHROPIC_ACCOUNT_KEY = "anthropic:legacy-default"; export declare const ENV_ANTHROPIC_ACCOUNT_KEY = "anthropic:env"; export declare function normalizeAnthropicAccountKey(value: string): string; export declare function anthropicAccountKeysEqual(left: string, right: string): boolean; export declare function createAccountAllowlist(values?: readonly string[]): AccountAllowlist | undefined; export declare function isAccountAllowed(accountKey: string, allowlist?: AccountAllowlist): boolean; export declare function shouldLoadFallbackCredential(storedAnthropicAccountCount: number, fallbackAccountKey: string, allowlist?: AccountAllowlist): boolean;