export interface IUiService { raw(text: string): void; text(text: string): void; textBold(text: string): void; emptyLine(): void; info(text: string, ...args: any[]): void; success(text: string, ...args: any[]): void; error(text: string, ...args: any[]): void; warning(text: string, ...args: any[]): void; debug(text: string, ...args: any[]): void; } export declare const UiService: import("@webiny/di").Abstraction; export declare namespace UiService { type Interface = IUiService; }