import { ObjectNotation } from '../types'; import { z } from 'zod'; /** * Converts a Zod Issue path to object notation. * @export * @param {z.core.$ZodIssue['path']} path * @param {ObjectNotation} options * @return {*} {string} */ export declare function getObjectNotation(path: z.core.$ZodIssue['path'], options: ObjectNotation): string;