import type { AuthConfig } from "./config.js"; import type { AuthSlotRecord } from "./storage.js"; export interface RotationPlan { mode: AuthConfig["rotation"]; order: string[]; } export declare function buildRotationPlan(slots: AuthSlotRecord[], config: Pick, currentSlot?: string): RotationPlan; export declare function nextSlotAfter(order: string[], current: string | undefined, exhausted: Set): string | undefined; //# sourceMappingURL=rotation.d.ts.map