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