interface Props {
    projectName?: string;
    flags: {
        template: string;
        skipInstall: boolean;
    };
}
export default function App({ projectName, flags }: Props): import("react/jsx-runtime").JSX.Element;
export {};
