import React from 'react'; import { BootOptions } from '../ConfigProvider'; import { ChannelHandler } from '../../ChannelHandler/ChannelHandler'; export interface ChannelProviderProps { channelHandler: ChannelHandler; children?: React.ReactNode; config: BootOptions; } declare const ChannelProvider: ({ channelHandler, children, config }: ChannelProviderProps) => React.JSX.Element; export default ChannelProvider;