import { ZodError, type ZodIssue } from "zod";
export declare class ZodAcceleratorError extends ZodError {
    passedPath: string;
    passedMessage: string;
    constructor(passedPath: string, passedMessage: string, issue?: ZodIssue);
}
