export type ErrorDataType = {
    msg: string;
    file?: string;
    stack?: string;
    class?: string;
    time: string;
    user?: string;
    admin?: string;
    status: 'STRONG' | 'MILD' | 'WEAK' | 'INFO';
};
export declare const LogError: (err: ErrorDataType) => void;
