/**
 * Registration status as returned by the broker or (for CIV) the fund manager:
 * - Tag: 506
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const RegistStatus: Readonly<{
    /** Accepted */
    readonly Accepted: "A";
    /** Rejected */
    readonly Rejected: "R";
    /** Held */
    readonly Held: "H";
    /** Reminder - i.e. Registration Instructions are still outstanding */
    readonly Reminder: "N";
}>;
export type RegistStatus = (typeof RegistStatus)[keyof typeof RegistStatus];
