import type { TDefaultedPromsterOptions, THttpMetrics } from '@promster/types';
declare const createHttpMetrics: {
    (options: TDefaultedPromsterOptions): THttpMetrics;
    defaultOptions: {
        getLabelValues: () => {};
        labels: never[];
        metricPrefix: string;
        metricTypes: string[];
        metricNames: {
            httpRequestsTotal: string[];
            httpRequestDurationPerPercentileInSeconds: string[];
            httpRequestDurationInSeconds: string[];
            httpRequestContentLengthInBytes: string[];
            httpResponseContentLengthInBytes: string[];
        };
        metricBuckets: {
            httpRequestContentLengthInBytes: number[];
            httpRequestDurationInSeconds: number[];
        };
        metricPercentiles: {
            httpRequestDurationPerPercentileInSeconds: number[];
            httpResponseContentLengthInBytes: number[];
        };
    };
};
export { createHttpMetrics };
