/**
 * Time unit associated with the provision's tenor period.
 * - Tag: 40097
 * - FIX Specification type: String
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const ProvisionDateTenorUnit: Readonly<{
    /** Day */
    readonly Day: "D";
    /** Week */
    readonly Week: "Wk";
    /** Month */
    readonly Month: "Mo";
    /** Year */
    readonly Year: "Yr";
}>;
export type ProvisionDateTenorUnit = (typeof ProvisionDateTenorUnit)[keyof typeof ProvisionDateTenorUnit];
