/**
 * Logger Utils class
 * Use this instead of `console.log`
 * Main purpose for helping linting.
 */
export declare class Logger {
    static log(...message: unknown[]): void;
    static warn(...message: unknown[]): void;
    static deprecate(message: string): void;
    static error(...message: unknown[]): void;
}
//# sourceMappingURL=logger.d.ts.map