import type { ModelAlgebraSet } from '@morphic-ts/model-algebras/lib/set'; import type { Type } from 'io-ts'; import { IoTsURI } from '../hkt'; declare module '@morphic-ts/model-algebras/lib/set' { /** * @since 0.0.1 */ interface SetConfig { [IoTsURI]: { type: Type; }; } } /** * @since 0.0.1 */ export declare const ioTsSetInterpreter: >>>() => ModelAlgebraSet<"IoTsURI", Env>;