import type { TableProps } from '@mui/material'; import type { PropsWithChildren } from 'react'; import React from 'react'; import type { TableExVariants } from './types/index.js'; /** Props for {@link TableEx}. */ export interface TableExProps extends PropsWithChildren, TableProps { variant?: TableExVariants; } /** Extended MUI table that enables sticky headers in scrollable mode. */ export declare const TableExWithRef: React.FC; /** Extended MUI table that enables sticky headers in scrollable mode. */ export declare const TableEx: React.FC; //# sourceMappingURL=TableEx.d.ts.map