/**
 * Indicates whether the rate source specified is a primary or secondary source.
 * - Tag: 1447
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const RateSourceType: Readonly<{
    /** Primary */
    readonly Primary: 0;
    /** Secondary */
    readonly Secondary: 1;
}>;
export type RateSourceType = (typeof RateSourceType)[keyof typeof RateSourceType];
