import { z } from 'zod'; /** * Schema for the input of the tool. * * Used to parse the tool arguments and validate them before calling the tool. * * TypeScript and Python runtimes support semantic versioning (x.y.z) or 'latest' in the URL, * so we validate the URL structure accordingly. */ declare const schema: { url: z.ZodEffects, URL, string>; }; export { schema }; //# sourceMappingURL=schemas.d.ts.map