import type { TranslationContextValue } from '../../../context/TranslationContext'; import type { SupportedTranslations } from '../../../i18n'; import { Streami18n } from '../../../i18n'; import type { AppSettingsAPIResponse, Channel, Mute, StreamChat } from 'stream-chat'; export type UseChatParams = { client: StreamChat; defaultLanguage?: SupportedTranslations; i18nInstance?: Streami18n; }; export declare const useChat: ({ client, defaultLanguage, i18nInstance, }: UseChatParams) => { channel: Channel | undefined; getAppSettings: () => Promise; latestMessageDatesByChannels: {}; mutes: Mute[]; setActiveChannel: (activeChannel?: Channel, watchers?: { limit?: number; offset?: number; }, event?: React.BaseSyntheticEvent) => Promise; translators: TranslationContextValue; }; //# sourceMappingURL=useChat.d.ts.map