export interface CodexQuotaWindowUpload { usedPercent?: number; windowMinutes?: number; resetAt?: number; } export interface CodexQuotaUpload { updatedAt: number; status: number; model: string; planType?: string; activeLimit?: number; primary: CodexQuotaWindowUpload; secondary: CodexQuotaWindowUpload; } export declare function loadCodexQuotaUploads(storagePath: string, accounts: readonly { accountId?: string; email?: string; }[]): Promise>;