import { ProtobufType } from '../ProtobufType'; import { TProtobufField } from '../TProtobufField'; import { TStringValue } from './basic'; export type TPhone = { phone: string; refresh_token: TStringValue; captcha_token: TStringValue; ios_device_token: TStringValue; android_jws: TStringValue; }; export declare class Phone extends ProtobufType { protected fields(): TProtobufField[]; }