import * as React from "react"; import { ChannelWithPosition } from "../helpers/types"; interface ChannelsProps { isTimeline: boolean; isRTL: boolean; isChannelVisible: (position: any) => boolean; channels: ChannelWithPosition[]; scrollY: number; sidebarWidth: number; renderChannel?: (v: { channel: ChannelWithPosition; }) => React.ReactNode; } export declare function Channels(props: ChannelsProps): JSX.Element; export {};