declare const module: { namespaced: boolean; state: { suggestions: never[]; }; actions: { /** * @description */ autocomplete({ commit, state }: { commit: any; state: any; }, query: any): Promise; }; mutations: { SET_SUGGESTIONS(state: any, suggestions: any): void; }; getters: { getSuggestions: (state: any) => any; }; }; export default module;