/** * Checks if passed argument is boolean * @param v - variable to check * @returns true, if passed v is of type boolean, false otherwise */ export declare function isBoolean(v: any): v is boolean;