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