/** * Auth Profiles - Profile Order Resolution * * Resolves the order of auth profiles for a provider (round-robin, etc). */ /** * Resolve auth profile order for a provider. * Uses stored order if available, otherwise returns default order. */ export declare function resolveAuthProfileOrder(provider: string): string[]; /** * Get next profile in rotation for a provider. * Considers last good profile and round-robin. */ export declare function getNextProfileInRotation(provider: string, availableProfiles: string[]): string | undefined; /** * Mark a profile as "good" (working) */ export declare function markProfileGood(provider: string, profileId: string): void;