/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { type StateHandlerFunction } from "./stateHandlers.js"; /** * Bumps any pre-release dependencies that have been released. * * @param state - The current state machine state. * @param machine - The state machine. * @param testMode - Set to true to run function in test mode. * @param log - A logger that the function can use for logging. * @param data - An object with handler-specific contextual data. * @returns True if the state was handled; false otherwise. */ export declare const doBumpReleasedDependencies: StateHandlerFunction; /** * Bumps any pre-release dependencies that have been released. * * @param state - The current state machine state. * @param machine - The state machine. * @param testMode - Set to true to run function in test mode. * @param log - A logger that the function can use for logging. * @param data - An object with handler-specific contextual data. * @returns True if the state was handled; false otherwise. */ export declare const doReleaseGroupBump: StateHandlerFunction; //# sourceMappingURL=doFunctions.d.ts.map