/**
 * An interface for an object that can be cloned.
 *
 * @ignore Exclude from docs
 */
export interface IClone<A> {
    clone(): A;
}
