/**
 * Indicates whether the trade price was adjusted for compensation (i.e. includes a mark-up, mark-down or commission) in the price paid.
    In the context of MSRB and FINRA TRACE reporting requirements, this is used among firms to indicate trade remuneration.
 * - Tag: 2356
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const RemunerationIndicator: Readonly<{
    /** No remuneration paid */
    readonly NoRemunerationPaid: 0;
    /** Remuneration paid */
    readonly RemunerationPaid: 1;
}>;
export type RemunerationIndicator = (typeof RemunerationIndicator)[keyof typeof RemunerationIndicator];
