/*! Copyright (c) 2022, XAPP AI */ import { Channelable } from "stentor-models"; /** * Type guard to check if the object implements Channeled. * * @param item * @returns Type checked boolean if the object implements Channeled */ export declare function isChannelable(item: object): item is Channelable;