interface GridWrapperProps { children: React.ReactNode; data?: any[]; isLoading?: boolean; } declare const GridWrapper: (props: GridWrapperProps) => import("react/jsx-runtime").JSX.Element; export { GridWrapper }; export default GridWrapper;