import React, { PropsWithChildren } from "react";
import { TableRowProps } from "@mui/material";
export interface TableHeadProps extends PropsWithChildren {
    title?: string;
    icon?: React.ReactNode;
    tableRowProps?: TableRowProps;
}
export declare const TableHead: React.FC<TableHeadProps>;
export default TableHead;
