export type TraceStep = { callId: string; apiName: string; params?: Record; startTime: number; endTime?: number; parentId?: string; error?: string; }; export declare function extractStepsFromTrace(zipUrl: string): Promise; export declare function formatStepsForDisplay(steps: TraceStep[]): string[]; //# sourceMappingURL=extract-steps.d.ts.map