/**
 * Identifies the Standing Instruction database used
 * - Tag: 169
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const StandInstDbType: Readonly<{
    /** Other */
    readonly Other: 0;
    /** DTC SID */
    readonly DTCSID: 1;
    /** Thomson ALERT */
    readonly ThomsonALERT: 2;
    /** A Global Custodian (StandInstDBName (70) must be provided) */
    readonly AGlobalCustodian: 3;
    /** AccountNet */
    readonly AccountNet: 4;
}>;
export type StandInstDbType = (typeof StandInstDbType)[keyof typeof StandInstDbType];
