import { SceneState } from './../states/'; export declare const SET_SCENE = "SET_SCENE"; export declare type SetScene = { type: typeof SET_SCENE; scene: SceneState; }; export declare type Actions = SetScene; export declare const setScene: (scene: string) => SetScene;