import { Node } from "./Element";

export default function clone<T extends Node>(el: T): T;
