interface Options { onFocus?: () => void; onBlur?: () => void; } export default function useIsFocused(options: Options): { isFocused: import("vue").Ref | import("vue/macros").ReactiveVariable>; onFocus: () => void; onBlur: () => void; }; export {};