import { Type, TypeOf, OutputOf } from 'io-ts';
import { Result } from './result';
import { NonRootNode } from './non-root-node';
declare type Codec = Type<{
    fixt: TypeOf<typeof Result>;
    seslax: TypeOf<typeof NonRootNode>[];
}, {
    fixt: OutputOf<typeof Result>;
    seslax: OutputOf<typeof NonRootNode>[];
}>;
export declare const Variation: Codec;
export {};
