/**
 * Describes the type of relationship between the order identified by RelatedOrderID(2887) and the order outside of the RelatedOrderGrp component.
 * - Tag: 2890
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const OrderRelationship: Readonly<{
    /** Not specified */
    readonly NotSpecified: 0;
    /** Order aggregation
        Order has been subject to a bundling of multiple orders to a single new order identified outside of the component. */
    readonly OrderAggregation: 1;
    /** Order split
        Order has been created as a child order of the order identified outside of the component. */
    readonly OrderSplit: 2;
}>;
export type OrderRelationship = (typeof OrderRelationship)[keyof typeof OrderRelationship];
