import { Descriptor } from '../state/index.js'; export declare const actionTypes: { LOAD_DESCRIPTOR: string; RESET_DESCRIPTOR: string; }; export declare const loadDescriptor: (descriptor: Descriptor) => { type: string; descriptor: Descriptor; }; export declare const resetDescriptor: () => { type: string; }; export declare const updateSlideshowConfig: (config: Descriptor) => { type: string; descriptor: Descriptor; }; export declare const resetSlideshowConfig: () => { type: string; };