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