import React from 'react';
import { ChannelSettingsUIProps } from './components/ChannelSettingsUI';
import { ChannelSettingsContextProps } from './context/index';
interface ChannelSettingsProps extends ChannelSettingsContextProps, Omit<ChannelSettingsUIProps, 'renderUserListItem'> {
}
declare const ChannelSettings: React.FC<ChannelSettingsProps>;
export default ChannelSettings;
