/** * Returns `true` if the string is not empty. * * @example * ```typescript * isNotEmpty(''); // => false * isNotEmpty(' '); // => true * ``` * * @see {@link isEmpty} */ declare const isNotEmpty: ( str: string, ) => str is Exclude; export default isNotEmpty; //# sourceMappingURL=isNotEmpty.d.ts.map