import { SFC } from 'react'; import { Channel } from '@jetshop/core/types'; import { SelectChannel } from './ChannelSelector'; export interface ChannelListItemProps { channel: Channel; onSelect: SelectChannel; isSelected: boolean; } declare const ChannelListItem: SFC; export default ChannelListItem;