/** * Updates the core of strapi * @param strapi * @param pluginName * @param key * @param newValues * @param environment */ export declare function updatePluginStore({ strapi, pluginName, key, newValues, environment }: { strapi: any; pluginName: any; key: any; newValues: any; environment?: string; }): Promise; /** * Get plugin settings from store * @param strapi * @param pluginName * @param key * @param environment */ export declare function getPluginStore({ strapi, pluginName, key, environment }: { strapi: any; pluginName: any; key: any; environment?: string; }): any;