import { ParamGetSet } from '../types/paramTypes'; import { Routes } from '../types/route'; import { StandardSchemaV1 } from '@standard-schema/spec'; import { ZodType } from 'zod'; export interface ZodSchemaLike extends StandardSchemaV1 { parse: (input: any) => any; } export declare function zodParamsDetected(routes: Routes): boolean; export declare function initZod(): Promise; export declare function isZodParam(value: unknown): value is ZodType; export declare function createZodParam(schema: ZodType): ParamGetSet;