/** * Trait for objects that have a unique owner. */ interface UniqueOwner { owner: Owner; payload: T; } /** * Creates an {@link UniqueOwner} object with the specified owner and payload. * @param object - The owned payload. * @param owner - The owner. */ export declare function intoUniqueOwner(object: T, owner: Owner): UniqueOwner; export default UniqueOwner; //# sourceMappingURL=UniqueOwner.d.ts.map