declare const Utils: {
    throw(message: any): void;
    path: {
        getDepth(filePath: string): number;
        getIncluded(filePaths: string[], include: string[], exclude: string[]): any;
        isIncluded(filePath: string, include: string[], exclude: string[]): boolean;
    };
    file: {
        read(filePath: string): Promise<any>;
        stat(filePath: string): Promise<any>;
    };
    folder: {
        exists(folderPath: string): boolean;
    };
    listr: {
        patch(listr: any): any;
    };
};
export default Utils;
