import { ProtobufType } from '../ProtobufType'; import { TProtobufField } from '../TProtobufField'; import { TBoolValue, TStringValue } from './basic'; export type TGoogleToken = { external_token: string; refresh_token: TStringValue; marketing_opt_in: TBoolValue; user_behavior: TBoolValue; }; export declare class GoogleToken extends ProtobufType { protected fields(): TProtobufField[]; }