interface IPostToSlackOptions { tag: string; owner: string; repo: string; slackUrl: string; baseUrl: string; } export default function postToSlack(releaseNotes: string, options: IPostToSlackOptions): Promise; export {};