import type { Channel, StreamChat } from 'stream-chat'; import type { DefaultStreamChatGenerics } from '../../types/types'; export declare const getChannel: (client: StreamChat, type: string, id: string) => Promise>; export declare const MAX_QUERY_CHANNELS_LIMIT = 30; declare type MoveChannelUpParams = { channels: Array>; cid: string; activeChannel?: Channel; }; export declare const moveChannelUp: ({ activeChannel, channels, cid, }: MoveChannelUpParams) => Channel[]; export {}; //# sourceMappingURL=utils.d.ts.map