import { Ref } from "vue"; //#region src/use-focus/index.d.ts /** * 聚焦 * @param cb 回调 * @returns */ declare function useFocus(cb?: (focused: boolean) => void): { focus: Ref; handleBlur: () => void; handleFocus: () => void; }; //#endregion export { useFocus }; //# sourceMappingURL=index.d.ts.map