/**
 * Indicates source of Settlement Instructions
 * - Tag: 165
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const SettlInstSource: Readonly<{
    /** Broker's Instructions */
    readonly BrokerCredit: "1";
    /** Institution's Instructions */
    readonly Institution: "2";
    /** Investor (e.g. CIV use) */
    readonly Investor: "3";
}>;
export type SettlInstSource = (typeof SettlInstSource)[keyof typeof SettlInstSource];
