import type { Channel } from 'stream-chat'; export type UseChannelHeaderOnlineStatusParams = { channel?: Channel; watcherCount?: number; }; /** * Returns the channel header online status text (e.g. "Online", "Offline", or "X members, Y online"). * Returns null when the channel has no members (nothing to show). */ export declare function useChannelHeaderOnlineStatus({ channel: channelOverride, watcherCount: watcherCountOverride, }?: UseChannelHeaderOnlineStatusParams): string | null; //# sourceMappingURL=useChannelHeaderOnlineStatus.d.ts.map