import type { InjectionKey, Ref } from 'vue'; export interface HoverContextProps { startRow: Ref; endRow: Ref; onHover: (start: number, end: number) => void; } export declare const HoverContextKey: InjectionKey; export declare const useProvideHover: (props: HoverContextProps) => void; export declare const useInjectHover: () => HoverContextProps;