/**
 * Defines the contract event which the receiver of the derivative is entitled to the dividend.
 * - Tag: 42246
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const DividendEntitlementEvent: Readonly<{
    /** Ex-date
        Dividend entitlement is on the dividend ex-date. */
    readonly ExDate: 0;
    /** Record date
        Dividend entitlement is on the dividend record date. */
    readonly RecordDate: 1;
}>;
export type DividendEntitlementEvent = (typeof DividendEntitlementEvent)[keyof typeof DividendEntitlementEvent];
