/**
 * The type of value in CurrentCollateralAmount(1704).
 * - Tag: 2632
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const CollateralAmountType: Readonly<{
    /** Market valuation (the default) */
    readonly MarketValuation: 0;
    /** Portfolio value before processing pledge request */
    readonly PortfolioValue: 1;
    /** Value confirmed as "locked-up" for processing a pledge request */
    readonly ValueConfirmed: 2;
    /** Credit value of collateral at CCP processing a pledge request */
    readonly CollateralCreditValue: 3;
    /** Additional collateral value
        Additional collateral deposited by the collateral provider at trade or post-trade. CollateralPercentOverage(2690) gives the overage percent */
    readonly AdditionalCollateralValue: 4;
    /** Estimated market valuation
        Estimated market valuation of collateral. In the context of EU SFTR this may be used for value of re-use of collateral. */
    readonly EstimatedMarketValuation: 5;
}>;
export type CollateralAmountType = (typeof CollateralAmountType)[keyof typeof CollateralAmountType];
