/**
 * Time unit associated with the event.
 * - Tag: 1827
 * - FIX Specification type: String
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const EventTimeUnit: Readonly<{
    /** Hour */
    readonly Hour: "H";
    /** Minute */
    readonly Minute: "Min";
    /** Second */
    readonly Second: "S";
    /** Day */
    readonly Day: "D";
    /** Week */
    readonly Week: "Wk";
    /** Month */
    readonly Month: "Mo";
    /** Year */
    readonly Year: "Yr";
}>;
export type EventTimeUnit = (typeof EventTimeUnit)[keyof typeof EventTimeUnit];
