export declare class SmartlogSourceOra {
    oraInstance: import("ora").Ora;
    started: boolean;
    constructor();
    text(textArg: string): void;
    stop(): void;
    finishSuccess(textArg?: string): void;
    finishFail(textArg?: string): void;
    successAndNext(textArg: string): void;
    failAndNext(textArg: string): void;
}
