import type { ModelAlgebraNewtype } from '@morphic-ts/model-algebras/lib/newtype'; import { Type } from 'io-ts'; import { IoTsURI } from '../hkt'; declare module '@morphic-ts/model-algebras/lib/newtype' { interface NewtypeConfig { [IoTsURI]: { type: Type; }; } interface IsoConfig { [IoTsURI]: { type: Type; }; } interface PrismConfig { [IoTsURI]: { type: Type; }; } } /** * @since 0.0.1 */ export declare const ioTsNewtypeInterpreter: >>>() => ModelAlgebraNewtype<"IoTsURI", Env>;