import type { Channel, UserResponse } from 'stream-chat';
export type ChannelOrUserResponse = Channel | UserResponse;
export declare const isChannel: (output: ChannelOrUserResponse) => output is Channel;
