import { type z } from 'zod';
export type ValidationError = {
    message: string;
    path: string;
};
export declare const formatMessage: (issue: z.ZodIssue) => ValidationError;
