import type { Expectation } from '../expectation/expectation';
import type { CallMap } from '../expectation/repository/expectation-repository';
export declare class UnmetExpectations extends Error {
    constructor(expectations: Expectation[]);
}
export declare class UnexpectedCalls extends Error {
    constructor(unexpectedCalls: CallMap, expectations: Expectation[]);
}
