/**
 * Specifies whether the PaymentScheduleStepRate(40847) or PaymentScheduleStepOffsetValue(40846) should be applied to the initial notional or the previous notional in order to calculate the notional step change amount.
 * - Tag: 40849
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PaymentScheduleStepRelativeTo: Readonly<{
    /** Initial */
    readonly Initial: 0;
    /** Previous */
    readonly Previous: 1;
}>;
export type PaymentScheduleStepRelativeTo = (typeof PaymentScheduleStepRelativeTo)[keyof typeof PaymentScheduleStepRelativeTo];
