import { ProtobufType } from '../ProtobufType'; import { TProtobufField } from '../TProtobufField'; import { TBoolValue, TInt32Value, TStringValue } from './basic'; import { TEmailMarketing } from './EmailMarketing'; export type TValidateEmailOtpState = { refresh_token: TStringValue; otp_length: TInt32Value; email_sent: TBoolValue; email_marketing: TEmailMarketing; unmasked_email: string; masked_email: string; }; export declare class ValidateEmailOtpState extends ProtobufType { protected fields(): TProtobufField[]; }