export function useFileDropToCreateRecords(_options: any) { return { isProcessing: readonly(ref(false)), showFieldSelectDlg: ref(false), pendingFiles: readonly(ref([])), attachmentFields: computed(() => []), handleFileDrop: (_files: any) => {}, onFieldSelected: (_field: any) => {}, onFieldSelectCancelled: () => {}, } }