//#region src/is-empty-string.d.ts /** * Determine if the type is string and is empty * * @param value - The value to type check * @returns An indicator specifying if the value provided is of type `""` */ declare const isEmptyString: (value: unknown) => value is string; //#endregion export { isEmptyString }; //# sourceMappingURL=is-empty-string.d.cts.map