import { z } from "@hono/zod-openapi";
declare const SlugParamsSchema: z.ZodObject<{
    slug: z.ZodString;
}, "strip", z.ZodTypeAny, {
    slug: string;
}, {
    slug: string;
}>;
export = SlugParamsSchema;
