/**
 * Instruction to disclose information or to use default value of the receiver.
 * - Tag: 1814
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const DisclosureInstruction: Readonly<{
    /** No */
    readonly No: 0;
    /** Yes */
    readonly Yes: 1;
    /** Use default setting */
    readonly UseDefaultSetting: 2;
}>;
export type DisclosureInstruction = (typeof DisclosureInstruction)[keyof typeof DisclosureInstruction];
