import React, { PropsWithChildren } from "react"; import { TableCellProps, TypographyProps } from "@mui/material"; export interface TableHeadingProps extends PropsWithChildren { typographyProps?: TypographyProps; popover?: React.ReactNode; popoverLabel?: React.ReactNode; } export declare const TableHeading: React.FC; export default TableHeading;