export declare type LogOptions = {
    debug?: boolean;
};
export declare type Color = 'green' | 'red' | 'yellow' | 'white';
export declare const log: (msg: string, color: Color, { debug }: LogOptions) => void;
export declare const isFunction: (val: any) => boolean;
