/** * Check whether or not a provided value is a string with content * * @param {unknown} val - Value to verify * @param {boolean} trimmed - (default=true) Trim the string or not */ declare function isNotEmptyString(val: unknown, trimmed?: boolean): val is string; export { isNotEmptyString, isNotEmptyString as default };