export declare const log: {
    GREEN: (s: string) => void;
    YELLOW: (s: string) => void;
    CYAN: (s: string) => void;
    BR_BLUE: (s: string) => void;
    RED: (s: string) => void;
    GREY: (s: string) => void;
    setDebug: (_debug: boolean) => void;
    getDebug: () => boolean;
    info: (s: any) => void;
};
