/**
 * A one character code identifying Money laundering status.
 * - Tag: 481
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const MoneyLaunderingStatus: Readonly<{
    /** Passed */
    readonly Passed: "Y";
    /** Not Checked */
    readonly NotChecked: "N";
    /** Exempt - Below the Limit */
    readonly ExemptBelowLimit: "1";
    /** Exempt - Client Money Type exemption */
    readonly ExemptMoneyType: "2";
    /** Exempt - Authorised Credit or financial institution */
    readonly ExemptAuthorised: "3";
}>;
export type MoneyLaunderingStatus = (typeof MoneyLaunderingStatus)[keyof typeof MoneyLaunderingStatus];
