/** The call is pending, waiting to be accepted by a user */ export declare class CallStatePendingBaseModel { _: 'callStatePending'; /** True, if the call has already been created by the server */ isCreated: boolean; /** True, if the call has already been received by the other party */ isReceived: boolean; }