type GitTag = string; export declare function run(...args: any[]): Promise; export declare function getShortDoc(): string; export declare function printHelp(): void; /** * Updates the corresponding GitHub release for `versionTag` using the given `title` and `text`. */ export declare function updateGitHubRelease(versionTag: GitTag, title: string, text: string, assets: string[], dryRun?: boolean): Promise; export {};