import type { EnvironmentBuilder } from '../types'; export interface OAuth { redirectBaseUrl: string; } export declare const defaults: { OAUTH_REDIRECT_BASE_URL: string; }; export declare function GetOAuth(env: EnvironmentBuilder): OAuth;