import { Response } from "express"; import { httpCodes } from "../config/http.config"; export declare function _try(res: Response | undefined, tryFunction: () => Promise, errors?: { [message: string]: { code: keyof typeof httpCodes; body: string; override?: string; onError?: () => Promise; }; }, onError?: (message: string, variables?: string[]) => Promise, splitter?: string): Promise; //# sourceMappingURL=try.handler.d.ts.map