import type { Channel, Client, DefaultOneChatGenerics } from '../../types'; /** * Calls channel.watch() if it was not already recently called. Waits for watch promise to resolve even if it was invoked previously. * @param client * @param type * @param id */ export declare const getChannel: (client: Client, 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