/**
 * Indicates whether the margin described is posted or received.
 * - Tag: 2851
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const MarginDirection: Readonly<{
    /** Posted
        The party or account that is the object of the report posted margin. */
    readonly Posted: 0;
    /** Received
        The party or account that is the object of the report received margin. */
    readonly Received: 1;
}>;
export type MarginDirection = (typeof MarginDirection)[keyof typeof MarginDirection];
