export declare type LogType = 'info' | 'warn' | 'error';
export declare const logerPrefix = "[NELiveDetection]";
declare const _: {
    log(type: LogType, msg: string): void;
    warn(msg: string): void;
    error(msg: string): void;
    assert(condition: boolean, msg: string, hook: (msg: string) => any): void;
};
export default _;
