import { State } from '../../shared/State'; export declare enum RestartStatus { restarting = "restarting", ready = "ready" } /** * Get status * @returns {Promise} a promise that resolves to a string indicating status */ export declare function getStatus({ state, }: { state: State; }): Promise; /** * Initiate restart * @returns {Promise} a promise that resolves to a string indicating status */ export declare function initiateRestart({ state, }: { state: State; }): Promise; //# sourceMappingURL=StartupApi.d.ts.map