export declare const walkDirectory: (dir: string) => string[]; export declare const replaceWithAlias: (base: string, filePath: string, alias: string) => string; export declare const parseModule: ({ source, filename, }: { source: string; filename: string; }) => Promise; export declare const getServerCombinedModuleFile: (internalDirectory: string, entryName: string) => string; export declare const checkIsBuildCommands: () => boolean; export declare const checkIsServeCommand: () => boolean; export declare const isSubDirOrEqual: (parent: string, child: string) => boolean;