export declare function getAllFilesWithExtension(directory: string, extension: string, excludes: string[]): string[]; export declare function cp(source: string, destination: string): void; declare function removeDirectorySync(directory: string): void; export declare function pathToArray(filePath: string): string[]; declare const _default: { pathToArray: typeof pathToArray; cp: typeof cp; getAllFilesWithExtension: typeof getAllFilesWithExtension; removeDirectorySync: typeof removeDirectorySync; }; export default _default;