import React from 'react'; import { Channel } from '../../types'; interface Props { name: string; channel: Channel; toggleExpand?: boolean; } export declare const ChannelComponent: React.FunctionComponent; export {};