/** * Is the given argument a boolean * * @param x - Argument to test * * @returns Whether the argument a Boolean or not * * @example * ```ts * isBoolean(false); // --> true * isBoolean('string'); // --> false * ``` */ export declare function isBoolean(x: unknown): x is boolean; export default isBoolean;