importtype { IsEmptyOptions } from'../types';
/**
* 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
*/exportdeclarefunctionisEmpty(str: string, options?: IsEmptyOptions): boolean;