import type { TokenResult } from "../types.js"; import type { AccountMetadataV3 } from "./migrations.js"; export type PersistedRefreshIdentity = Pick; export type CoordinatedRefreshSuccess = Extract & { readonly adopted: boolean; readonly rotatedAt?: number; }; export type CoordinatedRefreshResult = CoordinatedRefreshSuccess | Exclude; export declare function coordinatePersistedRefresh(identity: PersistedRefreshIdentity): Promise; export declare function coordinateFlaggedPersistedRefresh(identity: PersistedRefreshIdentity): Promise; //# sourceMappingURL=coordinated-refresh.d.ts.map