export declare class Validator { constructor(); /** * Returns true if the string is not empty, otherwise returns false * * @param str the targeted string * @returns boolean */ nonEmptyString(str: string | null | undefined, scope?: string): string | null; }