declare const module: { namespaced: boolean; state: { catalog: { __raw: null; }; }; actions: { /** * @description Loads details for the dataset with the given ID. * @param commit * @param state * @param id {String} The dataset ID. */ loadCatalog({ state, commit }: { state: any; commit: any; }, id: any): Promise; }; mutations: { SET_catalog(state: any, catalog: any): void; SET_RAW(state: any, rawResponse: any): void; }; getters: { getCatalog: (state: any) => any; getRaw: (state: any) => any; }; }; export default module;