/**
 * Indicates that this message is to serve as the final and legal confirmation.
 * - Tag: 650
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const LegalConfirm: Readonly<{
    /** Does not consitute a Legal Confirm */
    readonly DoesNotConsituteALegalConfirm: "N";
    /** Legal Confirm */
    readonly LegalConfirm: "Y";
}>;
export type LegalConfirm = (typeof LegalConfirm)[keyof typeof LegalConfirm];
