import { Channel } from "./Channel";
declare const createChannel: <State extends Record<string, unknown>, SessionState extends Record<string, unknown>>() => Channel<State, SessionState>;
export { createChannel };
