export interface DTFocusProviderProps { children: React.ReactNode; rowCount: number; columnCount: number; tableRef: React.RefObject; leftPinnedWidth: number; rightPinnedWidth: number; } export declare function DTFocusProvider({ children, rowCount, columnCount, tableRef, leftPinnedWidth, rightPinnedWidth, }: DTFocusProviderProps): import("react/jsx-runtime").JSX.Element;