import { ApiAuthInterface } from '../interfaces/api.auth.interface'; export declare class ClientCredentialAuth implements ApiAuthInterface { private readonly clientId; private readonly clientSecret; constructor(clientId: string, clientSecret: string); headers(): Record; }