/**
 * Specifies how the calculation will be made.
 * - Tag: 2592
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const CalculationMethod: Readonly<{
    /** Automatic (default) */
    readonly Automatic: 0;
    /** Manual */
    readonly Manual: 1;
}>;
export type CalculationMethod = (typeof CalculationMethod)[keyof typeof CalculationMethod];
