/**
 * Check if a string is empty
 * @param {any} value String variable to be checked
 * @returns {boolean} True if empty
 */
export declare function isEmpty(value: any): boolean;
