export type StickyType = 'spinning' | 'static'; export declare const spinCharacters: string[]; /** * Sticky text. It can be either static or include a spinner with a timestamp. */ export declare class Sticky { private _spinnerIndex; private _text; private _type; constructor(text: string, type?: StickyType); /** * Get the sticky text. NOTE: for a spinning sticky, this will advance the spinner character, * so get the value once before doing any calculations or printing. */ getText(): string; } //# sourceMappingURL=Sticky.d.ts.map