import { OAuthGrantBase } from "./oauth-grant-base"; import { OAuthGrantType } from "./oauth-grant-type"; export default class OAuthClientCredentialsGrant extends OAuthGrantBase { type: OAuthGrantType; constructor(clientId: string, clientSecret: string); } export { OAuthClientCredentialsGrant };