declare function isEmpty(value?: string | null): boolean; declare function isAllEmpty(...values: any): boolean; declare function hasEmpty(...values: any): boolean; declare const StringUtils: { isEmpty: typeof isEmpty; isAllEmpty: typeof isAllEmpty; hasEmpty: typeof hasEmpty; }; export default StringUtils;