/** * Spinner wrapper — loading indicators for long operations. * * Uses ora with theme-consistent colors and timing. */ import { type Ora } from 'ora'; /** * Run an async function with a spinner. Shows elapsed time on success. */ export declare function withSpinner(message: string, fn: (spinner: Ora) => Promise): Promise; /** * Simple step indicator (no spinner, just prints). */ export declare function step(message: string): void; //# sourceMappingURL=spinner.d.ts.map