/** * Deep copy the given object. */ export declare function deepCopy(obj: T): T; /** * If the given value is not an array, wrap it in one. */ export declare function arrayWrap(value: T): T[]; /** * Determine if the given data has files. */ export declare function hasFiles(data: File | Blob | FileList | Record): boolean;