interface ResumeChannelResponse { sid: string; interaction_sid: string; type: string; status: string; created_at: string; updated_at: string; error_code: string; error_message: string; } /** * @param {ResumeChannelResponse} response * @returns {boolean} * @private * @description Check if the response is an error response * @example * if (isErrorResponse(response)) { * console.error("Error response", response); * } * @since 2.9.0 */ export declare const isErrorResponse: (response: ResumeChannelResponse | undefined) => boolean; export {};