import React from 'react'; import zod from 'zod'; export declare const description = "Clone a single Environment or the entire repository from active GitOps Environment"; export declare const options: zod.ZodObject<{ apiKey: zod.ZodOptional; dryRun: zod.ZodDefault>; project: zod.ZodOptional; }, "strip", zod.ZodTypeAny, { dryRun: boolean; project?: boolean | undefined; apiKey?: string | undefined; }, { project?: boolean | undefined; apiKey?: string | undefined; dryRun?: boolean | undefined; }>; type Props = { options: zod.infer; }; export default function Clone({ options }: Props): React.JSX.Element; export {};