/**
 * Indicates whether or not the halt was due to Common Stock trading being halted.
 * - Tag: 328
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const InViewOfCommon: Readonly<{
    /** Halt was not related to a halt of the common stock */
    readonly HaltWasNotRelatedToAHaltOfTheCommonStock: "N";
    /** Halt was due to common stock being halted */
    readonly HaltWasDueToCommonStockBeingHalted: "Y";
}>;
export type InViewOfCommon = (typeof InViewOfCommon)[keyof typeof InViewOfCommon];
