import type { Tool } from '@mastra/core/tools'; import { z } from 'zod'; export declare const baseSchema: { queryText: z.ZodString; topK: z.ZodCoercedNumber; }; export declare const outputSchema: z.ZodObject<{ relevantContext: z.ZodAny; sources: z.ZodArray; score: z.ZodNumber; document: z.ZodString; }, z.core.$strip>>; }, z.core.$strip>; export declare const filterSchema: z.ZodObject<{ filter: z.ZodCoercedString; queryText: z.ZodString; topK: z.ZodCoercedNumber; }, z.core.$strip>; export type RagTool = Tool & { execute: NonNullable['execute']>; }; //# sourceMappingURL=tool-schemas.d.ts.map