import { ProtobufType } from '../ProtobufType'; import { TProtobufField } from '../TProtobufField'; import { TInt64ValueIn, TInt64ValueOut, TStringValue } from './basic'; import { TVerification } from './Verification'; export type TUnderageBanIn = { underage_ttl_duration_ms: TInt64ValueIn; underage_token: TStringValue; verification: TVerification; }; export type TUnderageBanOut = { underage_ttl_duration_ms: TInt64ValueOut; underage_token: TStringValue; verification: TVerification; }; export declare class UnderageBan extends ProtobufType { protected fields(): TProtobufField[]; }