/** Get the current spinner string */ declare function getSpinner(): string; /** Customize the spinner used for active tasks */ declare function setSpinner(config: MistySpinner): void; /** Enable or disable the spin interval */ declare function spin(enabled: boolean): void; /** These functions are called when the spinner updates */ declare const spinListeners: Set; interface MistySpinner { interval: number; frames: string[]; color: (input: string) => string; } export { MistySpinner, getSpinner, setSpinner, spin, spinListeners };