import { z } from "@hono/zod-openapi"; export declare function flattenSchema(schema: z.ZodObject, prefix?: string): z.ZodObject; export declare function flattenObject(obj: any, prefix?: string, res?: {}): {}; export declare function unflattenObject(flatObj: { [key: string]: any; }, prefixes: string[]): { [key: string]: any; };