export declare const checkModule: (pathOrName: string) => Promise<{ srcPath?: string | undefined; name: string; destPath: string; }>; export declare const checkExistingModule: (moduleName: string) => Promise; export declare const checkCorrectDevModule: (path: string) => Promise; export declare const buildDevModule: (path: string) => Promise; export declare const copyDevModule: (srcPath: string, destPath: string) => Promise;