declare global {
    namespace jest {
        interface Matchers<R> {
            toBePending: () => Promise<void>;
        }
    }
}
export {};
