import React from 'react'; type Props = { from?: string; name?: string; description?: string; to?: string; conflictStrategy?: 'fail' | 'overwrite'; }; export default function CopyComponent({ from, to: envToId, name, description, conflictStrategy, }: Props): React.JSX.Element; export {};