/**
 * Creates a deep clone of an object.
 * @param input The object to clone.
 */
export declare function clone<T = unknown>(input: T): T;
