import { ContentNode } from './ContentNode.js'; export type Cloneable = ContentNode | { [key: string | number]: Cloneable; } | Cloneable[]; export declare function clone(x: T): T; //# sourceMappingURL=clone.d.ts.map