/**
 * Indicates whether or not the order was solicited.
 * - Tag: 377
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const SolicitedFlag: Readonly<{
    /** Was not solicited */
    readonly WasNotSolicited: "N";
    /** Was solicited */
    readonly WasSolicited: "Y";
}>;
export type SolicitedFlag = (typeof SolicitedFlag)[keyof typeof SolicitedFlag];
