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