/** * @param path path to the test/s file * @returns the file name and parent dir in the following format: "folder/file.ext" */ export declare const renderTestName: (path: string) => string; /** * Executes command and returns STDOUT. If the command fails (non-zero), throws an error. */ export declare function execCapture(command: string, options: { cwd: string; }): Promise;