import { CallDiscardReasonUnion } from '@airgram-dev/core'; /** The call has ended successfully */ export declare class CallStateDiscardedBaseModel { _: 'callStateDiscarded'; /** The reason, why the call has ended */ reason: CallDiscardReasonUnion; /** True, if the call rating should be sent to the server */ needRating: boolean; /** True, if the call debug information should be sent to the server */ needDebugInformation: boolean; }