declare const noop: () => void;
declare const noopLog: {
    debug: () => void;
    error: () => void;
    fatal: () => void;
    info: () => void;
    trace: () => void;
    warn: () => void;
    child: () => any;
};
export { noop, noopLog };
