import { ProjectOptions } from './types.ts';
export type { CreateProjectOptions } from './workflows/CreateProjectWorkflow.ts';
/**
 * 创建项目的主函数
 */
export declare function createProject(projectName?: string, options?: ProjectOptions): Promise<void>;
