/** * @created: 2023/7/25 * @author: Xuanmo * @desc: 统一管理需要使用 esc 关闭的弹框、抽屉等实例 */ import { Ref } from 'vue'; export declare const useCloseOnEsc: (visible: Ref, options: { type: string; closeOnEsc?: boolean; closeFN: () => void; }) => void;