export declare const CODEX_HOST_AUTH_BUNDLE_ENV = "BOLT_FOUNDRY_DESKTOP_CODEX_AUTH_BUNDLE"; export type CodexChatgptAuthTokens = { accessToken: string; chatgptAccountId: string; chatgptPlanType: string | null; idToken: string | null; lastRefresh: string | null; refreshToken: string; }; export declare function summarizeCodexAuthBundle(bundle: CodexChatgptAuthTokens | null | undefined): { chatgptAccountId: string | null; chatgptPlanType: string | null; hasAccessToken: boolean; hasIdToken: boolean; hasRefreshToken: boolean; lastRefresh: string | null; }; export declare function parseCodexAuthBundle(raw: string): CodexChatgptAuthTokens; export declare function parseCodexAuthBundleFromRuntimeAuthFile(raw: string): CodexChatgptAuthTokens; export declare function serializeCodexAuthBundle(bundle: CodexChatgptAuthTokens): string; export declare function readCodexAuthBundleFromEnv(): CodexChatgptAuthTokens | null; export declare function refreshCodexChatgptAuthTokens(input: { bundle: CodexChatgptAuthTokens; previousAccountId?: string | null; reason: string; }): Promise; //# sourceMappingURL=codex_auth.d.ts.map