export interface WithCreateRequestId { /** * A function generating a request identifier. */ createRequestId: () => string; } export declare const withCreateRequestId: (obj: O) => O & WithCreateRequestId;