/**
 * Specifies the type of date (e.g. adjusted for holidays).
 * - Tag: 40173
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ProvisionCashSettlPaymentDateType: Readonly<{
    /** Unadjusted */
    readonly Unadjusted: 0;
    /** Adjusted */
    readonly Adjusted: 1;
}>;
export type ProvisionCashSettlPaymentDateType = (typeof ProvisionCashSettlPaymentDateType)[keyof typeof ProvisionCashSettlPaymentDateType];
