import type { z } from 'zod'; import type { schema } from './schemas.ts'; type ToolProps = { search: z.infer; runtime: z.infer; version: z.infer; }; interface MkDocsSearchIndex { config: { lang: string[]; separator: string; pipeline: string[]; }; docs: Array<{ location: string; title: string; text: string; tags?: string[]; }>; } export type { ToolProps, MkDocsSearchIndex }; //# sourceMappingURL=types.d.ts.map