import type { Span } from '@sentry/node'; import type { WizardOptions } from './utils/types'; export declare function withTelemetry(options: { enabled: boolean; integration: string; wizardOptions: WizardOptions; }, callback: () => F | Promise): Promise; export declare function traceStep(step: string, callback: (span: Span | undefined) => T): T; export declare function updateProgress(step: string): void;