import { ComponentUpdateObject } from '../release-bot.types'; /** * Given a component update object * Parse the changelog text into separate majorUpdates, minorUpdates & patchUpdates arrays */ export declare function parseChangeLog(component: ComponentUpdateObject): Promise<{ majorUpdates: string[] | undefined; minorUpdates: string[] | undefined; patchUpdates: string[] | undefined; }>; //# sourceMappingURL=parseChangeLog.d.ts.map