/** * Returns `true` if the string is not empty and contains at least one non-blank character. * * @example * ```typescript * isNotBlank(''); // => false * isNotBlank(' '); // => false * isNotBlank('hello'); // => true * isNotBlank(' hello '); // => true * ``` * * @see {@link isBlank} */ declare const isNotBlank: (str: string) => boolean; export default isNotBlank; //# sourceMappingURL=isNotBlank.d.ts.map