import type { AuthProfileCredential, AuthProfileStore } from "./types.js"; export declare function dedupeProfileIds(profileIds: string[]): string[]; export declare function upsertAuthProfile(params: { profileId: string; credential: AuthProfileCredential; }): void; export declare function upsertAuthProfileWithLock(params: { profileId: string; credential: AuthProfileCredential; }): Promise; export declare function listProfilesForProvider(store: AuthProfileStore, provider: string): string[];