import { Source } from '../wonka_types'; export type Callbag = { (t: 0, d: Callbag): void; (t: 1, d: I): void; (t: 2, d?: any): void; }; export const fromCallbag: (callbag: Callbag) => Source; export const toCallbag: (source: Source) => Callbag;