/**
 * Used to indicate whether a delivery instruction is used for securities or cash settlement.
 * - Tag: 787
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const DlvyInstType: Readonly<{
    /** Cash */
    readonly Cash: "C";
    /** Securities */
    readonly Securities: "S";
}>;
export type DlvyInstType = (typeof DlvyInstType)[keyof typeof DlvyInstType];
