import * as O from 'fp-ts/lib/Option' import * as t from 'io-ts' /** * @since 0.5.0 */ export interface OptionFromNullableC extends t.Type>, t.OutputOf | null, unknown> {} /** * @since 0.5.0 */ export declare function optionFromNullable(codec: C, name?: string): OptionFromNullableC