import React from 'react'; type Props = { apiKey?: string; dryRun?: boolean; project?: boolean; }; export default function CloneComponent({ apiKey, dryRun, project }: Props): React.JSX.Element; export {};