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