import { Theme } from "@material-ui/core";
import { TableCellProps } from "@material-ui/core/TableCell";
interface IHeaderProps extends TableCellProps {
    alignment: string;
    customStyle?: Function;
    dataKey: string;
    Header: any;
    label: string;
    sortable: boolean;
    sortBy: string;
    theme: Theme;
}
declare const _default: (props: IHeaderProps) => JSX.Element;
export default _default;
