import { BaseStore } from '../../base_store'; export interface EndOfRoundTimestampData { timestamp: number; } export declare const endOfRoundTimestampSchema: { $id: string; type: string; properties: { timestamp: { dataType: string; fieldNumber: number; }; }; required: string[]; }; export declare class EndOfRoundTimestampStore extends BaseStore { schema: { $id: string; type: string; properties: { timestamp: { dataType: string; fieldNumber: number; }; }; required: string[]; }; }