import { ProtobufType } from '../ProtobufType'; import { TProtobufField } from '../TProtobufField'; import { TBoolValue, TInt32Value, TStringValue } from './basic'; export type TValidatePhoneOtpState = { refresh_token: TStringValue; phone: string; otp_length: TInt32Value; sms_sent: TBoolValue; }; export declare class ValidatePhoneOtpState extends ProtobufType { protected fields(): TProtobufField[]; }