import type { IsEmptyOptions } from '../types/index'; /** * Check if the string is empty. * @param str The string to check * @param options Options object * @returns True if the string is empty, false otherwise */ export default function isEmpty(str: string, options?: IsEmptyOptions): boolean;