/**
 * Indicates whether or not details should be communicated to BrokerOfCredit (i.e. step-in broker).
 * - Tag: 208
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const NotifyBrokerOfCredit: Readonly<{
    /** Details should not be communicated */
    readonly DetailsShouldNotBeCommunicated: "N";
    /** Details should be communicated */
    readonly DetailsShouldBeCommunicated: "Y";
}>;
export type NotifyBrokerOfCredit = (typeof NotifyBrokerOfCredit)[keyof typeof NotifyBrokerOfCredit];
