export interface OAuthProviderParameters { client_id: string; client_secret: string; verify_token?: string; api_url: string; oauth_url: string; token_url: string; callback_url: string; subscribe_url?: string; webhook_url?: string; scope: string; } export declare type OAuthProviderType = string | "strava"; export declare type OAuthProvidersMap = { [key: OAuthProviderType]: OAuthProviderParameters; }; export interface OAuthConfig { providers: OAuthProvidersMap; }