import { GroupChannelHandler } from '@sendbird/chat/groupChannel'; import { OpenChannelHandler } from '@sendbird/chat/openChannel'; import type { SendbirdChatSDK } from '@sendbird/uikit-utils'; type ChannelType = 'open' | 'group'; /** * @deprecated This hook is deprecated and will be replaced by the '@sendbird/uikit-tools' package. * */ export declare const useChannelHandler: (sdk: SendbirdChatSDK, handlerId: string, hookHandler: Partial, type?: T) => void; export {};