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