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