/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import type { StateHandlerFunction } from "./stateHandlers.js"; /** * Determines the release type based on context, or by asking the user if needed. * * @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 askForReleaseType: StateHandlerFunction; //# sourceMappingURL=askFunctions.d.ts.map