export declare const SHOW_SAVE_MODAL = "SHOW_SAVE_MODAL"; export declare const HIDE_SAVE_MODAL = "HIDE_SAVE_MODAL"; export declare const RECEIVE_SAVE = "RECEIVE_SAVE"; export declare const FAIL_SAVE = "FAIL_SAVE"; export declare const RESET_CONFIGURATION = "RESET_CONFIGURATION"; export declare const LOAD_CONFIGURATION = "LOAD_CONFIGURATION"; export declare const REQUEST_SAVE = "REQUEST_SAVE"; export declare const RECEIVE_SAVES = "RECEIVE_SAVES"; export declare const REQUEST_SAVES = "REQUEST_SAVES"; export declare const FAIL_SAVES = "FAIL_SAVES"; export declare const REMOVE_SAVE = "REMOVE_SAVE"; export declare const dumpConfiguration: (configuration: any) => any; export declare const showSaveModal: () => { type: string; }; export declare const hideSaveModal: () => { type: string; }; export declare const receiveSave: (json: any) => { type: string; saveId: any; title: any; }; export declare const resetConfiguration: () => { type: string; }; export declare const loadConfiguration: (configuration: any, save: any) => { type: string; configuration: any; save: any; }; export declare const requestSave: () => { type: string; }; export declare const failSave: () => { type: string; }; export declare const receiveSaves: (saves: [any?]) => { type: string; saves: any[]; }; export declare const requestSaves: () => { type: string; }; export declare const fetchSaves: () => (dispatch: (event: any) => any, getState: () => any) => any; export declare const createSave: (configuration: any, title: string) => (dispatch: (event: any) => any) => Promise; export declare const updateSave: (configuration: any, lastSave: any) => (dispatch: (event: any) => any) => Promise; export declare const failSaves: () => { type: string; }; export declare const removeSave: (uuid: string) => { type: string; uuid: string; }; export declare const deleteSave: (uuid: string) => (dispatch: (event: any) => any) => Promise; //# sourceMappingURL=saves.d.ts.map