import { Error } from '@airgram-dev/core'; /** The call has ended with an error */ export declare class CallStateErrorBaseModel { _: 'callStateError'; /** * Error. An error with the code 4005000 will be returned if an outgoing call is missed * because of an expired timeout */ error: Error; }