export declare function createProjectFile(Pname: string): void; declare type Ptype = { ptype: string; }; declare type featrue = { featrue: Array; }; export declare function selectFeature(): Promise<{ projectType: Ptype; featrueList: featrue; }>; export declare function initFeatrue(Pname: string, projectType: string, featrueList: Array): void; export {};