import { Hono } from "hono"; import { z } from "zod"; import type { Library } from "../../core/library.js"; /** * Request body schema for search endpoint */ declare const searchRequestBodySchema: z.ZodObject<{ query: z.ZodString; sort: z.ZodOptional>; order: z.ZodOptional>; limit: z.ZodOptional; offset: z.ZodOptional; }, z.core.$strip>; /** * Request body type for search endpoint */ export type SearchRequestBody = z.infer; /** * Creates search route for HTTP server */ export declare function createSearchRoute(library: Library): Hono; export {}; //# sourceMappingURL=search.d.ts.map