/** * Returns `true` if the string is empty or contains only blank characters. * * @example * ```typescript * isBlank(''); // => true * isBlank(' '); // => true * isBlank('hello'); // => false * isBlank(' hello '); // => false * ``` */ declare const isBlank: (str: string) => boolean; export default isBlank; //# sourceMappingURL=isBlank.d.ts.map