import type { Action } from "./types"; import actionNames from "../action-names"; export type SetSnapshotsPlayerHighlightTimeAction = Action; export declare const setCurrentPlayerHighlightTime: (payload: SetSnapshotsPlayerHighlightTimeAction['payload']) => SetSnapshotsPlayerHighlightTimeAction; export type SnapshotsPlayerGoToTimeAction = Action; export declare const goToTimeInSnapshotsPlayer: (payload: SnapshotsPlayerGoToTimeAction['payload']) => SnapshotsPlayerGoToTimeAction; export type ToggleTimeTravelPlayerVisibilityAction = Action; export declare const toggleTimeTravelPlayerVisibility: (isVisible: boolean) => ToggleTimeTravelPlayerVisibilityAction; export type SnapshotsAction = SetSnapshotsPlayerHighlightTimeAction | SnapshotsPlayerGoToTimeAction | ToggleTimeTravelPlayerVisibilityAction;