/** * Check if a string is empty * @param str input string * @returns boolean value, true if input string is empty, false otherwise. */ export declare const isEmpty: (str: string) => boolean;