import * as z from 'zod/mini'; import type * as App from '../../../App.js'; import * as Response from '../../../internal/Response.js'; /** Zod schemas owned by the indexer passthrough. */ export declare namespace schema { /** Structured result returned by the indexer `query` endpoint. */ const Response: z.ZodMiniObject<{ ok: z.ZodMiniBoolean; columns: z.ZodMiniArray>; rows: z.ZodMiniArray>; row_count: z.ZodMiniNumber; engine: z.ZodMiniOptional>; query_time_ms: z.ZodMiniOptional>; }, z.core.$strip>; /** Error envelope returned by the upstream indexer. */ const Error: z.ZodMiniObject<{ ok: z.ZodMiniLiteral; error: z.ZodMiniString; }, z.core.$strip>; } /** Creates the raw indexer (TIDX) passthrough handler. */ export declare function indexer(): import("hono/hono-base").HonoBase; //# sourceMappingURL=indexer.d.ts.map