import type { IdGenerator } from '@opentelemetry/sdk-trace-base'; /** * Generates span and trace IDs from a named workflow random stream. */ export declare class DeterministicIdGenerator implements IdGenerator { generateTraceId(): string; generateSpanId(): string; }