export type GridKeyAction = 'prev-day' | 'next-day' | 'prev-week' | 'next-week' | 'prev-month' | 'next-month' | 'prev-year' | 'next-year' | 'week-start' | 'week-end' | 'select' | 'close' | null; export declare function mapGridKey(event: Pick): GridKeyAction;