import { ErrorLike } from "./isErrorLike";
export type R19ErrorLike = ErrorLike & {
    procedurePath?: string[];
    procedureArgs?: Record<string, unknown>;
};
export declare const isR19ErrorLike: (error: unknown) => error is R19ErrorLike;
