/**
 * Category of news message.
 * - Tag: 1473
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const NewsCategory: Readonly<{
    /** Company News */
    readonly CompanyNews: 0;
    /** Marketplace News */
    readonly MarketplaceNews: 1;
    /** Financial Market News */
    readonly FinancialMarketNews: 2;
    /** Technical News */
    readonly TechnicalNews: 3;
    /** Other News */
    readonly OtherNews: 99;
}>;
export type NewsCategory = (typeof NewsCategory)[keyof typeof NewsCategory];
