import type { Ora } from 'ora';
import oraReal from 'ora';
/**
 * A custom ora spinner that sends the stream to stdout in CI, non-TTY, or expo's non-interactive flag instead of stderr (the default).
 *
 * @param options
 * @returns
 */
export declare function ora(options?: oraReal.Options | string): oraReal.Ora;
/**
 * Create a unified section spinner.
 *
 * @param title
 * @returns
 */
export declare function logNewSection(title: string): Ora;
