import type { FetchOptions } from './types/FetchOptions.js';
export declare class CommunicatorConfiguration {
    private readonly apiKey;
    private readonly apiSecret;
    private readonly host;
    private readonly fetchOptions?;
    constructor(apiKey: string, apiSecret: string, host: string, fetchOptions?: FetchOptions);
    getApiKey(): string;
    getApiSecret(): string;
    getHost(): string;
    getFetchOptions(): FetchOptions | undefined;
}
