import { Exception } from '../utils/Types';
export declare const toMatchException: (received: Exception, expected: unknown, reason?: string) => jest.CustomMatcherResult;
declare global {
    namespace jest {
        interface Matchers<R, T> {
            toMatchException(exception: unknown, reason?: string): R;
        }
    }
}
