import { ComponentUpdateObject } from '../release-bot.types'; interface OutputStrings { /** The name of the package on npm, including scope */ name: string; /** The full name of the package with @version */ fullName: string; /** The short name of the package, without scope */ shortName: string; /** The npm scope of the package. Typically @leafygreen-ui */ scope: string; /** The version number of the package */ version: string; /** The url to the changelog on github */ changelogUrl: string; } export declare function generateOutputStrings({ name, version, }: ComponentUpdateObject): OutputStrings; export {}; //# sourceMappingURL=generateOutputStrings.d.ts.map