import { ASN1Element as _Element, INTEGER, OCTET_STRING } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
export declare class PBEParameter {
    readonly salt: OCTET_STRING;
    readonly iterationCount: INTEGER;
    constructor(salt: OCTET_STRING, iterationCount: INTEGER);
    static _from_object(_o: {
        [_K in keyof PBEParameter]: PBEParameter[_K];
    }): PBEParameter;
}
export declare const _root_component_type_list_1_spec_for_PBEParameter: $.ComponentSpec[];
export declare const _root_component_type_list_2_spec_for_PBEParameter: $.ComponentSpec[];
export declare const _extension_additions_list_spec_for_PBEParameter: $.ComponentSpec[];
export declare function _decode_PBEParameter(el: _Element): PBEParameter;
export declare function _encode_PBEParameter(value: PBEParameter, elGetter: $.ASN1Encoder<PBEParameter>): _Element;
//# sourceMappingURL=PBEParameter.ta.d.ts.map