/**
 * Instruction related to system generated auctions, e.g. flash order auctions.
 * - Tag: 1805
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const AuctionInstruction: Readonly<{
    /** Automatic auction permitted (default) */
    readonly AutomatedAuctionPermitted: 0;
    /** Automatic auction not permitted */
    readonly AutomatedAuctionNotPermitted: 1;
}>;
export type AuctionInstruction = (typeof AuctionInstruction)[keyof typeof AuctionInstruction];
