/**
 * Method of encryption.
 * - Tag: 98
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const EncryptMethod: Readonly<{
    /** None / Other */
    readonly None: 0;
    /** PKCS (Proprietary) */
    readonly PKCS: 1;
    /** DES (ECB Mode) */
    readonly DES: 2;
    /** PKCS / DES (Proprietary) */
    readonly PKCSDES: 3;
    /** PGP / DES (Defunct) */
    readonly PGPDES: 4;
    /** PGP / DES-MD5 (See app note on FIX web site) */
    readonly PGPDESMD5: 5;
    /** PEM / DES-MD5 (see app note on FIX web site) */
    readonly PEM: 6;
}>;
export type EncryptMethod = (typeof EncryptMethod)[keyof typeof EncryptMethod];
