export type OAuthErrorResponse = { error?: string; error_description?: string; }; export type OAuthTokenResponse = { access_token?: string; expires_in?: number; id_token?: string; issued_at?: number; refresh_token?: string; }; //# sourceMappingURL=oauth2.d.ts.map