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