import { type ElementType } from 'react'; import { type MainAction, type MainActionsProps } from '../../../../ActionGroup'; type PageMainActionsProps = Omit, 'actions'> & { actions?: MainAction[]; /** * Класс, применяемый к корневому элементу */ className?: string; }; export declare const MainActions: ({ actions, isDisabled, className, }: PageMainActionsProps) => JSX.Element | null; export {};