export type YobtaErrorPath = (number | string)[];
export type YobtaErrorMetadata = {
    field: string;
    message: string;
    path: YobtaErrorPath;
};
export declare class YobtaError extends Error {
    field: string;
    name: string;
    path: YobtaErrorPath;
    constructor({ field, message, path }: YobtaErrorMetadata);
}
//# sourceMappingURL=index.d.ts.map