/*! Copyright (c) 2019, XAPPmedia */ import { Conditional } from "stentor-models"; /** * Type guard to check if the object implements Conditional * * @param item * @returns Type checked boolean if the object implements Conditioned */ export declare function isConditional(item: object | undefined): item is Conditional;