import type { CommonOptions } from './common'; /** * Renders a log which clears on success and remains on failure */ export declare function taskLog(opts: TaskLogOptions): void; export declare interface TaskLogOptions extends CommonOptions { title: string limit?: number spacing?: number retainLog?: boolean } export declare interface TaskLogMessageOptions { raw?: boolean } export declare interface TaskLogCompletionOptions { showLog?: boolean }