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