import { Context } from 'semantic-release'; import type PluginConfig from './@types/pluginConfig'; declare const publish: ({ extensionId, target, asset }: PluginConfig, { logger, branch, lastRelease, nextRelease, commits }: Context) => Promise<{ name: string; url: string; } | undefined>; export default publish;