import { ASN1Element as _Element, INTEGER, OPTIONAL } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
import { HashAlgorithm } from "../PKCS-1/HashAlgorithm.ta";
import { MaskGenAlgorithm } from "../PKCS-1/MaskGenAlgorithm.ta";
import { TrailerField } from "../PKCS-1/TrailerField.ta";
export { HashAlgorithm, _decode_HashAlgorithm, _encode_HashAlgorithm, } from "../PKCS-1/HashAlgorithm.ta";
export { MaskGenAlgorithm, _decode_MaskGenAlgorithm, _encode_MaskGenAlgorithm, } from "../PKCS-1/MaskGenAlgorithm.ta";
export { mgf1SHA1 } from "../PKCS-1/mgf1SHA1.va";
export { sha1 } from "../PKCS-1/sha1.va";
export { TrailerField, trailerFieldBC, TrailerField_trailerFieldBC, _decode_TrailerField, _encode_TrailerField, } from "../PKCS-1/TrailerField.ta";
export declare class RSASSA_PSS_params {
    readonly hashAlgorithm: OPTIONAL<HashAlgorithm>;
    readonly maskGenAlgorithm: OPTIONAL<MaskGenAlgorithm>;
    readonly saltLength: OPTIONAL<INTEGER>;
    readonly trailerField: OPTIONAL<TrailerField>;
    constructor(hashAlgorithm: OPTIONAL<HashAlgorithm>, maskGenAlgorithm: OPTIONAL<MaskGenAlgorithm>, saltLength: OPTIONAL<INTEGER>, trailerField: OPTIONAL<TrailerField>);
    static _from_object(_o: {
        [_K in keyof RSASSA_PSS_params]: RSASSA_PSS_params[_K];
    }): RSASSA_PSS_params;
    static get _default_value_for_hashAlgorithm(): import("x500-ts/dist/node/modules/AuthenticationFramework/AlgorithmIdentifier.ta").AlgorithmIdentifier;
    static get _default_value_for_maskGenAlgorithm(): import("x500-ts/dist/node/modules/AuthenticationFramework/AlgorithmIdentifier.ta").AlgorithmIdentifier;
    static get _default_value_for_saltLength(): number;
    static get _default_value_for_trailerField(): number;
}
export declare const _root_component_type_list_1_spec_for_RSASSA_PSS_params: $.ComponentSpec[];
export declare const _root_component_type_list_2_spec_for_RSASSA_PSS_params: $.ComponentSpec[];
export declare const _extension_additions_list_spec_for_RSASSA_PSS_params: $.ComponentSpec[];
export declare function _decode_RSASSA_PSS_params(el: _Element): RSASSA_PSS_params;
export declare function _encode_RSASSA_PSS_params(value: RSASSA_PSS_params, elGetter: $.ASN1Encoder<RSASSA_PSS_params>): _Element;
//# sourceMappingURL=RSASSA-PSS-params.ta.d.ts.map