export declare const LogWarning: () => void; export declare const LogError: () => void; export declare class Log { static info(...args: any[]): void; static warning(...args: any[]): void; static error(...args: any[]): void; }