export type ManagedCodexAccount = { id: string; label: string; email: string | null; name: string | null; plan_type: string | null; active: boolean; health: 'healthy' | 'refreshable' | 'invalid'; updated_at: string; }; export declare function storeManagedCodexAccount(authInput: unknown, options?: { label?: string; }): ManagedCodexAccount; export declare function captureCurrentCodexAccount(label?: string): ManagedCodexAccount | null; export declare function listManagedCodexAccounts(): { accounts: ManagedCodexAccount[]; active_account_id: string | null; }; export declare function exportManagedCodexAccount(accountId: string): Record; export declare function activateManagedCodexAccount(accountId: string): ManagedCodexAccount; export declare function importManagedCodexAccount(auth: unknown, options?: { label?: string; activate?: boolean; }): ManagedCodexAccount; export declare function removeManagedCodexAccount(accountId: string): void; //# sourceMappingURL=codex-accounts.d.ts.map