/*! Copyright (c) 2019, XAPPmedia */ import { JSONDependable } from "stentor-models"; /** * Guard to determine if the object implements JSONDependable. * * @param item * @returns Type checked boolean if the object implements JSON */ export declare function isJSONDependable(item: object): item is JSONDependable;