/**
 * Indicates whether the broker is to locate the stock in conjunction with a short sell order.
 * - Tag: 114
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const LocateReqd: Readonly<{
    /** Indicates the broker is not required to locate */
    readonly No: "N";
    /** Indicates the broker is responsible for locating the stock */
    readonly Yes: "Y";
}>;
export type LocateReqd = (typeof LocateReqd)[keyof typeof LocateReqd];
