import { OAuth2ClientCredentialsConfiguration } from './OAuth2ClientCredentialsConfiguration';
/**
 * Represents the configuration options for OAuth2 authentication using the password grant type.
 * Extends the `OAuth2ClientCredentialsConfiguration` interface.
 */
export interface OAuth2PasswordConfiguration extends OAuth2ClientCredentialsConfiguration {
    username: string;
    password: string;
}
