import { ReactNode } from 'react';
import { Channel } from './BackgroundPanel';
interface ContainerProps {
    initialBackground: string;
    channel: Channel;
    children: ReactNode;
}
declare const Container: ({ initialBackground, channel, children }: ContainerProps) => import("react/jsx-runtime").JSX.Element;
export default Container;
