import type { PrepareContext } from 'semantic-release'; import type PluginConfig from './@types/pluginConfig.js'; /** * prepare hook for semantic release * * @throws {SemanticReleaseError} */ declare const prepare: ({ apiSpecFiles }: PluginConfig, { nextRelease, logger }: PrepareContext) => any; export default prepare;