export type TimeScrubEventDispatcher = { on: (eventName: 'newXValue', handler: (xDate: Date) => void) => void; }; type ServerStatsToolbarProps = { eventDispatcher: TimeScrubEventDispatcher; }; declare function ServerStatsToolbar({ eventDispatcher }: ServerStatsToolbarProps): JSX.Element; export { ServerStatsToolbar }; //# sourceMappingURL=server-stats-toolbar.d.ts.map