import { type JSXElementConstructor, type PropsWithChildren } from 'react'; /** * DataTableV2DevTools slot definition. * You can pass the ReactDevTools from `@tanstack/react-table-devtools` in to enable them. * @public */ export declare function DataTableV2DevTools({ devTools, }: { devTools: JSXElementConstructor<{ table: unknown; }>; }): null; /** * Helper function that will find the DevTools slot in the children and * return the DevTools. * @internal */ export declare function _getDevToolsSlot(props: PropsWithChildren, table: unknown): import("react/jsx-runtime.js").JSX.Element | null;