/**
 * Indicates whether a given timestamp was manually captured.
 * - Tag: 2839
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const TrdRegTimestampManualIndicator: Readonly<{
    /** Not manually captured */
    readonly NotManuallyCaptured: "N";
    /** Manually captured */
    readonly ManuallyCaptured: "Y";
}>;
export type TrdRegTimestampManualIndicator = (typeof TrdRegTimestampManualIndicator)[keyof typeof TrdRegTimestampManualIndicator];
