import type { GroupChannel } from '@sendbird/chat/groupChannel';
import { ChannelSettingsState } from './types';
export declare const useChannelSettings: () => {
    state: ChannelSettingsState;
    actions: {
        setChannel: (channel: GroupChannel) => void;
        setLoading: (loading: boolean) => void;
        setInvalid: (invalid: boolean) => void;
    };
};
export default useChannelSettings;
