import { IMatch } from "../types";
declare const errorParser: ({ err }: {
    err: unknown;
}) => IMatch;
export default errorParser;
