/**
 * Class for generating a unique user-defined ID.
 * The constructor accepts optional string parameters (used as hyphen-delimited prefixes for the generated ID).
 */
declare class CorrelationId {
    readonly value: string;
    constructor(...prefixes: (string | null | undefined)[]);
}
export { CorrelationId };
export default CorrelationId;
