export declare class Spinner { readonly message: string; private _interval?; private frame; constructor(message: string); private reset; start(): this; stop(wasSuccessful: boolean): this; success(): this; fail(): this; isSpinning(): boolean; }