import type { TableFooterProps } from '@mui/material'; import type { PropsWithChildren } from 'react'; import React from 'react'; import type { TableExVariants } from './types/index.js'; /** Props for {@link TableFooterEx}. */ export interface TableFooterExProps extends PropsWithChildren, TableFooterProps { variant?: TableExVariants; } /** Table footer that sticks to the bottom when used with the scrollable variant. */ export declare const TableFooterEx: React.FC; //# sourceMappingURL=TableFooterEx.d.ts.map