import { TableNextProps } from './types'; /** * The `TableNext` component is a WIP replacement for the `Table` component. * * @example const columnHelper = createColumnHelper(); const columns = [ columnHelper.accessor("firstName", { cell: (info) => info.getValue(), }), columnHelper.accessor((row) => row.lastName, { id: "lastName", cell: (info) => {info.getValue()}, header: () => Last Name, }), columnHelper.accessor("age", { header: () => "Age", cell: (info) => info.renderValue(), }), ]; const data = [ { id: 1, firstName: "John", lastName: "Doe", age: 25 }, { id: 2, firstName: "Jane", lastName: "Doe", age: 27 }, ]; return ; * * @see https://design.avayacloud.com/components/web/tables-web * @see https://neo-react-library-storybook.netlify.app/?path=/docs/components-table-next--docs */ export declare const TableNext: ({ data, columns, containerClassName, pushPaginationDown, rowHeight, showRowHeightMenu, showRowSeparator, showSearch, itemsPerPageOptions, initialStatePageIndex, translations: translationsProp, ...rest }: TableNextProps) => import("react/jsx-runtime").JSX.Element;