declare function Log(...text: unknown[]): void;
declare function Info(...text: unknown[]): void;
declare function Warn(...text: unknown[]): void;
declare function Error(...text: unknown[]): void;
declare const _default: {
    Log: typeof Log;
    Info: typeof Info;
    Warn: typeof Warn;
    Error: typeof Error;
};
export default _default;
