/**
 * Checks whether a value is a string representing a boolean.
 *
 * @param val - The value to check, either a boolean or a string.
 * @returns `true` if the input string is a boolean.
 */
export declare const IsBool: (val: string) => boolean;
