import { Provider, Scopes } from '../provider'; export declare class PatreonProvider extends Provider { clientId: string; clientSecret: string; scopes: Scopes; name: string; tokenUrl: string; authUrl: string; constructor(clientId: string, clientSecret: string, scopes?: Scopes); requestToken(code: string, redirect_uri: string): Promise<{}>; }