import type { TemplateVariables } from './types';
/**
 * Create a project from template
 */
export declare function createProjectFromTemplate(targetDir: string, templateType: string, workingDir: string, force: boolean, variables: TemplateVariables): Promise<void>;
