import { VitroConfig } from './config'; import { Logger } from '@bundless/cli'; export declare const logger: Logger; export declare const sleep: (ms: any) => Promise; export declare const debug: (...args: any[]) => void; export declare function findVitroJsConfigPath(cwd: string): string; export declare function getVitroConfig(p: string): VitroConfig; export declare function transformName(name: string): string; export declare function readFile(path: any): string; export declare const withErrorHandling: (command: any) => any; export declare const print: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; }; export declare const printGreen: (x?: string, pad?: boolean) => void; export declare const printRed: (x?: string, pad?: boolean) => void; export declare function getExperimentsFilters(argv: any): string[]; export declare const fatal: (x?: string) => never; export declare function runCommand({ command, env, silent, cwd, }: { command: any; env?: {}; silent?: boolean; cwd?: string; }): Promise; //# sourceMappingURL=support.d.ts.map