import { UiService, StdioService, IsCi } from "../../abstractions/index.js"; export declare class DefaultUiService implements UiService.Interface { private readonly stdio; private readonly isCi; constructor(stdio: StdioService.Interface, isCi: IsCi.Interface); raw(text: string): void; text(text: string): void; textBold(text: string): void; emptyLine(): void; success(text: string, ...args: any[]): void; info(text: string, ...args: any[]): void; warning(text: string, ...args: any[]): void; error(text: string, ...args: any[]): void; debug(text: string, ...args: any[]): void; private typedColorizedText; } export declare const uiService: import("@webiny/di").Implementation;