/*! Copyright (c) 2019, XAPPmedia */ import { LastActiveResponse, Response } from "stentor-models"; /** * Type guard to determine if the Response is a LastActiveResponse. * * @param {Response} response * @returns {response is LastActiveResponse} */ export declare function isLastActiveResponse(response: Response): response is LastActiveResponse;