/**
* This class represents the Zoho CRM User.
*/
export declareclassUserSignature{
name: string;
constructor(name: string);
/**
* This is a getter method to get user email.
* @returns {string} A String representing the CRM user email.
*/getName(): string;
}