import { type ElementType } from 'react'; import { type ActionGroupProps } from '../../../ActionGroup'; export type PageActionsProps = ActionGroupProps & { /** * Если true, отображается skeleton */ isLoading?: boolean; }; export declare const PageActions: (props: ActionGroupProps & { /** * Если true, отображается skeleton */ isLoading?: boolean | undefined; } & import("react").RefAttributes) => import("react").ReactElement> | null;