/** * Start a spinner in stderr with the given text. * * @param {string} text - The text to be displayed with the spinner. * @returns {void} */ export declare const start: (text: string) => void; /** * Stop the currently running spinner. * * @returns {void} */ export declare const stop: () => void;