import type { IsBooleanOptions } from '../types/index'; /** * Check if a string represents a boolean value * * @param str - The string to check * @param options - Options object that determines matching behavior * @returns True if the string represents a boolean value, false otherwise */ export default function isBoolean(str: string, options?: IsBooleanOptions): boolean;