import type { TableRowProps, TypographyProps } from '@mui/material'; import React from 'react'; /** Props for {@link TableRowNoData}. */ export interface TableRowNoDataProps extends TableRowProps { additionalCells?: number; hideBorder?: boolean; typographyProps?: TypographyProps; } /** Placeholder row shown when a payload table has no data. */ export declare const TableRowNoData: React.FC; //# sourceMappingURL=TableRowNoData.d.ts.map