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