/** * Clone a node that has the same type as the original one * @param node */ export declare const cloneNode: (node: T, deep?: boolean) => T;