import { SendbirdChatSDK, SendbirdGroupChannel } from '@sendbird/uikit-utils'; type State = { loading: boolean; channel?: SendbirdGroupChannel; error?: unknown; }; export declare const useGroupChannel: (sdk: SendbirdChatSDK, channelUrl: string) => State; export {};