import type { Identifier } from '../interfaces/Identifier.ts'; export declare const makeSagaId: (sagaDescriptor: string, originEventId: string) => string; export declare const parseSagaId: (sagaId: Identifier) => { sagaDescriptor: string; originEventId: string; };