import { ListDataItem, USEHandler } from './types'; import { ModelRef, Ref } from 'vue'; /** * 操作 */ export declare const useHandler: ({ props, emit, listData }: USEHandler.Option) => { listData: ModelRef; curNum: Ref; isPreview: Ref; onDelete: (e: Event, item: ListDataItem) => void; closePreview: () => void; onChange: (e: Event) => void; onPreview: ({ id }: ListDataItem) => void; };