export interface Output { info(message: string): void; success(message: string): void; warn(message: string): void; error(message: string): void; debug(message: string): void; } export interface OutputOptions { verbose: boolean; silent: boolean; } export declare function createOutput(options: OutputOptions): Output;