/**
 * Defines the treatment of non-cash dividends.
 * - Tag: 42258
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const NonCashDividendTreatment: Readonly<{
    /** Potential adjustment event
        The treatment of any non-cash dividend shall be determined in accordance with the potential adjustment event provisions. */
    readonly PotentialAdjustment: 0;
    /** Cash equivalent
        Any non-cash dividend shall be treated as a declared cash equivalent dividend. */
    readonly CashEquivalent: 1;
}>;
export type NonCashDividendTreatment = (typeof NonCashDividendTreatment)[keyof typeof NonCashDividendTreatment];
