/**
 * Used to identify whether these delivery instructions are for the buyside or the sellside.
 * - Tag: 1164
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const SettlObligSource: Readonly<{
    /** Instructions of Broker */
    readonly InstructionsOfBroker: "1";
    /** Instructions for Institution */
    readonly InstructionsForInstitution: "2";
    /** Investor */
    readonly Investor: "3";
    /** Buyer's settlement instructions */
    readonly BuyersSettlementInstructions: "4";
    /** Seller's settlement instructions */
    readonly SellersSettlementInstructions: "5";
}>;
export type SettlObligSource = (typeof SettlObligSource)[keyof typeof SettlObligSource];
