/// import { ChannelWithPosition } from "../helpers/types"; interface ChannelProps { channel: T; onClick?: (v: ChannelWithPosition) => void; } export declare function Channel({ channel, onClick, ...rest }: ChannelProps): JSX.Element; export {};