/**
 * Used to indicate whether settlement instructions are provided on an allocation instruction message, and if not, how they are to be derived.
 * - Tag: 780
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const AllocSettlInstType: Readonly<{
    /** Use default instructions */
    readonly UseDefaultInstructions: 0;
    /** Derive from parameters provided */
    readonly DeriveFromParametersProvided: 1;
    /** Full details provided */
    readonly FullDetailsProvided: 2;
    /** SSI DB IDs provided */
    readonly SSIDBIDsProvided: 3;
    /** Phone for instructions */
    readonly PhoneForInstructions: 4;
}>;
export type AllocSettlInstType = (typeof AllocSettlInstType)[keyof typeof AllocSettlInstType];
