import React from 'react'; import zod from 'zod'; import { type infer as zInfer } from 'zod'; export declare const options: zod.ZodObject<{ apiKey: zod.ZodOptional; from: zod.ZodOptional; name: zod.ZodOptional; description: zod.ZodOptional; to: zod.ZodOptional; conflictStrategy: zod.ZodOptional>>; }, "strip", zod.ZodTypeAny, { apiKey?: string | undefined; name?: string | undefined; description?: string | undefined; from?: string | undefined; to?: string | undefined; conflictStrategy?: "fail" | "overwrite" | undefined; }, { apiKey?: string | undefined; name?: string | undefined; description?: string | undefined; from?: string | undefined; to?: string | undefined; conflictStrategy?: "fail" | "overwrite" | undefined; }>; type Props = { readonly options: zInfer; }; export default function Copy({ options: { apiKey, from, to, name, description, conflictStrategy }, }: Props): React.JSX.Element; export {};