/** Information about the email address authentication code that was sent */ export declare class EmailAddressAuthenticationCodeInfoBaseModel { _: 'emailAddressAuthenticationCodeInfo'; /** Pattern of the email address to which an authentication code was sent */ emailAddressPattern: string; /** Length of the code; 0 if unknown */ length: number; }