/** * @Author Awen * @Date 2024/06/01 * @Email wengaolng@gmail.com **/ /// import type { ClickData, ClickEvent } from "../types/click"; import type { Writable } from 'svelte/store'; export declare const useHandler: (_data: Writable | any, event: Writable | any, clearCbs: () => void) => { dots: Writable; clickEvent: (e: Event | any) => boolean; confirmEvent: (e: Event | any) => boolean; closeEvent: (e: Event | any) => boolean; refreshEvent: (e: Event | any) => boolean; resetData: () => void; clearData: () => void; close: () => void; refresh: () => void; };