import { ProtobufType } from '../ProtobufType'; import { TProtobufField } from '../TProtobufField'; import { TStringValue } from './basic'; export type TPhoneOtp = { phone: TStringValue; otp: string; refresh_token: TStringValue; }; export declare class PhoneOtp extends ProtobufType { protected fields(): TProtobufField[]; }