import * as t from 'io-ts'; export declare type MixedArray = [t.Mixed, t.Mixed] | [t.Mixed, t.Mixed, t.Mixed]; export declare type Codec = t.Props | MixedArray; export declare type CodecType = V extends t.Props ? t.TypeC : V extends MixedArray ? t.IntersectionC : never; export declare type InnerType = V extends t.Props ? t.TypeOf> : V extends MixedArray ? t.TypeOf> : never; //# sourceMappingURL=config-codec-types.d.ts.map