import { Logger } from '@flxbl-io/sfp-logger';
import { NativeMetricSender } from '../NativeMetricSender';
export declare class SplunkMetricSender extends NativeMetricSender {
    constructor(logger: Logger);
    private instance;
    initialize(apiHost: string, apiKey: string): void;
    sendGaugeMetric(metric: string, value: number, tags: string[] | {
        [key: string]: string;
    }): void;
    sendCountMetric(metric: string, tags: string[] | {
        [key: string]: string;
    }): void;
}
