/** * Do notation for IOOption * it allows you to chain multiple IOOption computations together * * @example * ```ts * pipe( * Do, * bind('a', () => of(1)), * bind('b', ({ a }) => of(a + 1)), * map(({ a, b }) => a + b), * ) * ``` */ export declare const Do: import("./io-option").IOOption<{}>; /** * bind an IOOption to a name * @param name name of the IOOption * @param f function that returns a IOOption * @returns IOOption with the name binded * * @example * ```ts * pipe( * Do, * bind('a', () => of(1)), * bind('b', ({ a }) => of(a + 1)), * map(({ a, b }) => a + b), * ) * ``` */ export declare const bind: (args_0: A1 extends string ? Exclude : never, args_1: (args_0: A2) => import("./io-option").IOOption) => (args_0: import("./io-option").IOOption) => import("./io-option").IOOption; declare const $let: (args_0: A1 extends string ? Exclude : never, args_1: (args_0: A2) => A3) => (args_0: import("./io-option").IOOption) => import("./io-option").IOOption; export { $let as let };