/** * Returns `true` if the string is empty. * * @example * ```typescript * isEmpty(''); // => true * isEmpty(' '); // => false * ``` * * @example * ```typescript * const foo = 'hello'; * if (isEmpty(foo)) { * const bar = foo; // bar :: '' * } * ``` */ declare const isEmpty: (str: string) => str is ''; export default isEmpty; //# sourceMappingURL=isEmpty.d.ts.map