/**
 * Defines how a server handles distribution of a truncated book. Defaults to broker option.
 * - Tag: 547
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const MDImplicitDelete: Readonly<{
    /** Server must send an explicit delete for bids or offers falling outside the requested MarketDepth of the request */
    readonly No: "N";
    /** Client has responsibility for implicitly deleting bids or offers falling outside the MarketDepth of the request */
    readonly Yes: "Y";
}>;
export type MDImplicitDelete = (typeof MDImplicitDelete)[keyof typeof MDImplicitDelete];
