import { z } from 'zod'; /** * Schema for clone-repository tool arguments. */ export declare const CloneRepositoryToolArgs: z.ZodObject<{ workspaceSlug: z.ZodOptional; repoSlug: z.ZodString; targetPath: z.ZodString; }, z.core.$strip>; export type CloneRepositoryToolArgsType = z.infer;