export declare class Log {
    private data;
    private iconStr;
    constructor();
    /** show project name */
    name(): this;
    icon(str: string): this;
    error(message?: any, ...optionalParams: any[]): this;
    success(message?: any, ...optionalParams: any[]): this;
}
