import { IOAuthStrategy, Tokens } from './types.js'; export declare function OAuthStrategy(config: { clientId: string; publicKey?: string; tokens?: Tokens; }): IOAuthStrategy; export interface TokenResponse { access_token: string; expires_in: number; refresh_token: string | null; token_type: string; scope?: string | null; }