/* eslint-disable @typescript-eslint/no-explicit-any */ declare module 'semantic-release-plugin-decorators' { import { Context } from 'semantic-release'; type PluginFn = ( config: Config, context: Context ) => Context | Promise; export declare function wrapStep( stepName: string, wrapFn: ( pluginFn: PluginFn ) => PluginFn | Promise>, config?: { defaultReturn?: any; wrapperName?: any } ); }