/** * Renders an object path as a human-readable string. * * - An empty path becomes ``. * - String segments are joined with `.`. * - Numeric segments are rendered as bracket indices (`items[0]`). * * @example * path([]) // "" * path(["config", "channels", 0, "port"]) // "config.channels[0].port" */ export declare const path: (segments: ReadonlyArray) => string; //# sourceMappingURL=path.d.ts.map