export type AuthRotationMode = "round-robin" | "priority" | "manual"; export interface AuthConfig { rotation: AuthRotationMode; priority: string[]; quotaPatterns: string[]; sources: string[]; } export declare function readAuthConfig(cwd?: string, home?: string): Promise; //# sourceMappingURL=config.d.ts.map