/**
 * Specifies the tolerance value type.
 * - Tag: 41046
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const DeliveryScheduleToleranceType: Readonly<{
    /** Absolute */
    readonly Absolute: 0;
    /** Percentage */
    readonly Percentage: 1;
}>;
export type DeliveryScheduleToleranceType = (typeof DeliveryScheduleToleranceType)[keyof typeof DeliveryScheduleToleranceType];
