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