/**
 * A trade that is being submitted for a trade date prior to the current trade or clearing date, e.g. in an open outcry market an out trade being submitted for the previous trading session or trading day.
 * - Tag: 1015
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const AsOfIndicator: Readonly<{
    /** false - trade is not an AsOf trade */
    readonly False: "0";
    /** true - trade is an AsOf trade */
    readonly True: "1";
}>;
export type AsOfIndicator = (typeof AsOfIndicator)[keyof typeof AsOfIndicator];
