/**
 * Defines how the composition of dividends is to be determined.
 * - Tag: 42259
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const DividendComposition: Readonly<{
    /** Equity amount receiver election
        The equity amount receiver determines the composition of dividends (subject to conditions). */
    readonly EquityAmountReceiver: 0;
    /** Calculation agent election
        The calculation agent determines the composition of dividends (subject to conditions). */
    readonly CalculationAgent: 1;
}>;
export type DividendComposition = (typeof DividendComposition)[keyof typeof DividendComposition];
