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