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