/** * The credentials of the Twitter account to be logged into. */ export declare class AccountCredential { /** The email id associated with the Twitter account. */ email: string; /** The username associated with the Twitter account. */ userName: string; /** The password to the Twitter account. */ password: string; /** * @param cred - The credentials to the Twitter account. */ constructor(cred: AccountCredential); }