import { ProtobufType } from '../ProtobufType'; import { TProtobufField } from '../TProtobufField'; import { TUnderageBanIn, TUnderageBanOut } from './UnderageBan'; import { TBanAppeal } from './BanAppeal'; export type TBanReasonIn = { underage_ban: TUnderageBanIn; ban_appeal: TBanAppeal; }; export type TBanReasonOut = { underage_ban: TUnderageBanOut; ban_appeal: TBanAppeal; }; export declare class BanReason extends ProtobufType { protected fields(): TProtobufField[]; }