import { z } from "@hono/zod-openapi"; type Validator = "uuid" | "nanoid" | "cuid" | "cuid2" | "ulid"; export interface ParamsSchema { name?: string; validator?: Validator | undefined; } declare const getParamsSchema: ({ name, validator, }: ParamsSchema) => z.ZodObject<{ [x: string]: z.ZodString; }, z.core.$strip>; export default getParamsSchema;