/**
 * Code to represent whether value is net (inclusive of tax) or gross.
 * - Tag: 416
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const IncTaxInd: Readonly<{
    /** Net */
    readonly Net: 1;
    /** Gross */
    readonly Gross: 2;
}>;
export type IncTaxInd = (typeof IncTaxInd)[keyof typeof IncTaxInd];
