import { z } from "zod"; import type { ToolInput } from "@qvac/sdk"; export declare const weatherSchema: z.ZodObject<{ city: z.ZodString; country: z.ZodOptional; }, z.core.$strip>; export declare const horoscopeSchema: z.ZodObject<{ sign: z.ZodString; }, z.core.$strip>; export declare const toolSchemas: { readonly get_weather: z.ZodObject<{ city: z.ZodString; country: z.ZodOptional; }, z.core.$strip>; readonly get_horoscope: z.ZodObject<{ sign: z.ZodString; }, z.core.$strip>; }; export declare const tools: ToolInput[]; export declare function mockExecute(name: string, args: Record): string; //# sourceMappingURL=shared.d.ts.map