import React from 'react'; import { SortingState } from './useSorting'; type DataRowContextValue = { mobileMatch?: boolean; sortingState?: SortingState; [key: string]: any; }; export declare const DataRowContext: React.Context>; type DataRowProviderProps = { children: React.ReactNode; disableMobileMatch?: boolean; sortingState?: SortingState; [key: string]: any; }; export declare function DataRowProvider(props: DataRowProviderProps): JSX.Element; export {};