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 function useProvideHover(props: HoverContextProps): void; export declare function useInjectHover(): HoverContextProps;