import { Component } from 'react'; export type FocusOnOption = { index: number; size?: number; }; export interface WithDynamicListGestureProps { className: string; goToPreviousPage: () => void; goToNextPage: () => void; children: (fn: (event: KeyboardEvent, options: FocusOnOption) => void) => JSX.Element; } export declare class WithDynamicListGesture extends Component { myRef: import("react").RefObject; constructor(props: WithDynamicListGestureProps); onKeyDown(event: KeyboardEvent, options: FocusOnOption): void; render(): import("react/jsx-runtime").JSX.Element; }