import React from 'react'; import { options } from '../../commands/init.js'; import { type infer as zInfer } from 'zod'; type Props = { options: zInfer; }; export default function InitWizardComponent({ options }: Props): React.JSX.Element | null; export {};