import { Exception } from '@the-standard/exceptions';
declare global {
    namespace jest {
        interface Matchers<R> {
            toThrowException(expectedException: Exception): R;
            toThrowExceptionAsync(expectedException: Exception): Promise<R>;
        }
    }
}
export {};
