/**
 * Time unit associated with the frequency of payments.
 * - Tag: 40754
 * - FIX Specification type: String
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const PaymentStreamPaymentFrequencyUnit: Readonly<{
    /** Day */
    readonly Day: "D";
    /** Week */
    readonly Week: "Wk";
    /** Month */
    readonly Month: "Mo";
    /** Year */
    readonly Year: "Yr";
    /** Term */
    readonly Term: "T";
}>;
export type PaymentStreamPaymentFrequencyUnit = (typeof PaymentStreamPaymentFrequencyUnit)[keyof typeof PaymentStreamPaymentFrequencyUnit];
