/**
 * Represents the configuration options for an OAuth2 client credentials flow.
 */
export interface OAuth2ClientCredentialsConfiguration {
    oauthTokenUrl: URL;
    clientId: string;
    clientSecret: string;
    scope?: string[];
}
