export declare abstract class OAuthGrantBase { abstract type: string; clientId: string; clientSecret: string; constructor(clientId: string, clientSecret: string); }