import { ProtobufType } from '../ProtobufType'; import { TProtobufField } from '../TProtobufField'; import { TBanReasonIn, TBanReasonOut } from './BanReason'; export type TErrorProtoIn = { code: number; message: string; ban_reason: TBanReasonIn; }; export type TErrorProtoOut = { code: number; message: string; ban_reason: TBanReasonOut; }; export declare class ErrorProto extends ProtobufType { protected fields(): TProtobufField[]; }