/// <reference types="react" />
interface TheadCellActionProps {
    label?: string;
    isLastCell: boolean;
    enableRowActions: boolean;
}
declare function TheadCellAction(props: TheadCellActionProps): JSX.Element;
declare namespace TheadCellAction {
    var defaultProps: {
        label: string;
    };
}
export default TheadCellAction;
