export declare const getProjectNameFromPath: (root: string) => string; export declare const findIdeaFolder: (root: string) => string | undefined; export declare const createConfigurationFile: (root: string, projectName: string) => void; export declare const findConfigurationFile: (root: string, projectName: string) => string | undefined; /** * finds nearest idea project root * @param startPath */ export declare const findProjectRoot: (startPath: string) => string | undefined;