/**
 * Indicates whether or not the halt was due to the Related Security being halted.
 * - Tag: 329
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const DueToRelated: Readonly<{
    /** Halt was not related to a halt of the related security */
    readonly NotRelatedToSecurityHalt: "N";
    /** Halt was due to related security being halted */
    readonly RelatedToSecurityHalt: "Y";
}>;
export type DueToRelated = (typeof DueToRelated)[keyof typeof DueToRelated];
