/** * useGridA11y * * Composable that augments a Kendo-based grid with accessible keyboard navigation, * focus management, and custom behaviors for column header menus (filter/sort). */ import { type Ref } from "vue"; import type { GridSortChangeEvent } from "../types/kendo"; export declare const useGridA11y: (gridRef: Ref, options?: { focusableMenuSelectors?: string[]; }) => { activeFilterButton: Ref; handleGridKeyDown: (e: KeyboardEvent) => void; handleSortChange: (event?: GridSortChangeEvent, customHandler?: any) => void; initA11y: () => void; };