import * as $ from "asn1-ts/dist/node/functional";
export interface OPEN<Type = any> {
    readonly class: "OPEN";
    readonly decoderFor: Partial<{
        [_K in keyof OPEN<Type>]: $.ASN1Decoder<OPEN<Type>[_K]>;
    }>;
    readonly encoderFor: Partial<{
        [_K in keyof OPEN<Type>]: $.ASN1Encoder<OPEN<Type>[_K]>;
    }>;
    readonly "&Type": Type;
}
//# sourceMappingURL=OPEN.oca.d.ts.map