/**
 * Identifies whether an order is a margin order or a non-margin order. This is primarily used when sending orders to Japanese exchanges to indicate sell margin or buy to cover. The same tag could be assigned also by buy-side to indicate the intent to sell or buy margin and the sell-side to accept or reject (base on some validation criteria) the margin request.
 * - Tag: 544
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const CashMargin: Readonly<{
    /** Cash */
    readonly Cash: "1";
    /** Margin Open */
    readonly MarginOpen: "2";
    /** Margin Close */
    readonly MarginClose: "3";
}>;
export type CashMargin = (typeof CashMargin)[keyof typeof CashMargin];
