/*! Copyright (c) 2019, XAPPmedia */ import { Actionable } from "stentor-models"; /** * Guard to check if the object is actionable. * * @param {(T | Actionable)} potential * @returns {potential is Actionable} */ export declare function isActionable(potential: object | Actionable | undefined): potential is Actionable;