import { BoilerplateChoice } from '../utils/boilerplate-choices';
import { ExecutionState } from '../utils/command';
interface CreateConfig {
    projectName: string;
    boilerplate: BoilerplateChoice;
    skipInstall: boolean;
    skipToolkit: boolean;
}
export declare function createTaco(config: CreateConfig, state: ExecutionState): Promise<void>;
export {};
