import { ProtobufType } from '../ProtobufType'; import { TProtobufField } from '../TProtobufField'; import { TCaptcha } from './Captcha'; import { TInt64ValueIn, TInt64ValueOut } from './basic'; export type TLoginResultIn = { refresh_token: string; auth_token: string; captcha: TCaptcha; user_id: string; auth_token_ttl: TInt64ValueIn; }; export type TLoginResultOut = { refresh_token: string; auth_token: string; captcha: TCaptcha; user_id: string; auth_token_ttl: TInt64ValueOut; }; export declare class LoginResult extends ProtobufType { protected fields(): TProtobufField[]; }