import { z } from 'zod'; import { Problem } from '../problem.js'; export type ProblemMatcher = z.ZodType | ((problem: Problem) => boolean); export declare function nullifyNotFound(promise: Promise): Promise; export declare function nullifyProblem(promise: Promise, statuses: number[], problemTypes: ProblemMatcher[]): Promise;