/** * Create an event handler for either dropzone or input type="file" elements. * @param {object} setters - The parameters for the drop event handler. * @param {function} setters.setViewConfig - A function to set the view config. * @param {function} setters.setStores - A function to set the stores. * @param {boolean} isFileInput - Whether the drop zone is for file input. * By default, false. * @param {boolean} isConfigInput - Whether the drop zone is for config input. * By default, false. * @returns A drop event handler async function. */ export function createOnDrop(setters: { setViewConfig: Function; setStores: Function; }, isFileInput?: boolean, isConfigInput?: boolean): (e: any) => Promise; //# sourceMappingURL=on-drop.d.ts.map