import { CamundaPlatform8Configuration, DeepPartial } from '../../lib';
import { IOAuthProvider, TokenGrantAudienceType } from './IOAuthProvider';
export declare class BasicAuthProvider implements IOAuthProvider {
    private username;
    private password;
    constructor(options?: {
        config?: DeepPartial<CamundaPlatform8Configuration>;
    });
    getToken(audience: TokenGrantAudienceType): Promise<string>;
}
