import { ApiV3 } from '../lib/ApiV3'; import { ModulesResponse } from '../Types'; /** * Gets the list of enabled schema modules. * @param apiV3 the v3 API instance to use * @throws {HttpError} if it receives a non-2XX result */ export declare function getEnabledModules(apiV3: ApiV3.API): Promise>; /** * Enables a schema module. * @param apiV3 the v3 API instance to use * @param module the module to enable * @throws {ApiModuleAlreadyEnabledError} if the module was already enabled * @throws {HttpError} if it receives any other non-2XX result */ export declare function enableModule(apiV3: ApiV3.API, module: string): Promise>; //# sourceMappingURL=modules.d.ts.map