import type { UploaderCreateOptions } from '../types'; declare const getMandatoryOptions: (options?: UploaderCreateOptions) => UploaderCreateOptions; declare const getIsFileList: (files: any) => boolean; /*** * will unwrap object from proxy * if obj itself isnt a proxy, will look for a proxy max 2 levels deep */ declare const deepProxyUnwrap: (obj: any, level?: number) => any; export { getMandatoryOptions, getIsFileList, deepProxyUnwrap }; //# sourceMappingURL=utils.d.ts.map