// SPDX-License-Identifier: Apache-2.0

export interface CloneTrait<T> {
  clone(): T;
}
