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