///
import { type IconButtonProps } from '../../../IconButton';
import { type TooltipProps } from '../../../Tooltip';
import { type ActionCellHandler, type SingleAction } from '../../types';
export type MainIconButtonProps = {
action: IconButtonProps & SingleAction;
/**
* Обработчик клика на действие
*/
onActionClick: ActionCellHandler;
/**
* Если true, action не доступен
*/
isDisabled?: boolean;
/**
* Положение тултипа
*/
tooltipPlacement?: TooltipProps['placement'];
};
export declare const MainIconButton: (props: MainIconButtonProps) => JSX.Element;