import { ASN1Element as _Element, OPTIONAL } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
import { MacData } from "../PKCS-12/MacData.ta";
import { PFX_version } from "../PKCS-12/PFX-version.ta";
import { ContentInfo } from "../PKCS7/ContentInfo.ta";
export declare class PFX {
    readonly version: PFX_version;
    readonly authSafe: ContentInfo;
    readonly macData: OPTIONAL<MacData>;
    constructor(version: PFX_version, authSafe: ContentInfo, macData: OPTIONAL<MacData>);
    static _from_object(_o: {
        [_K in keyof PFX]: PFX[_K];
    }): PFX;
}
export declare const _root_component_type_list_1_spec_for_PFX: $.ComponentSpec[];
export declare const _root_component_type_list_2_spec_for_PFX: $.ComponentSpec[];
export declare const _extension_additions_list_spec_for_PFX: $.ComponentSpec[];
export declare function _decode_PFX(el: _Element): PFX;
export declare function _encode_PFX(value: PFX, elGetter: $.ASN1Encoder<PFX>): _Element;
//# sourceMappingURL=PFX.ta.d.ts.map