import { ResponseSpec, CorrelationPair } from '../types';
declare const _default: (apiUrl: string) => {
    getCorrelationPairs: (sessionId: string, from?: number, howMany?: number) => Promise<ResponseSpec & {
        correlationPairs: CorrelationPair[];
    }>;
    postCorrelationPair: (sessionId: string, correlationPair: CorrelationPair) => Promise<ResponseSpec & {
        correlationPair: CorrelationPair;
    }>;
    deleteCorrelationPair: (sessionId: string, pairId: string) => Promise<ResponseSpec>;
};
export default _default;
