import type { JSX } from 'react';
import { PageActionType } from '../../core/hooks';
type PageActionProps = {
pageSlug?: string;
mcpUrl?: string;
actions?: PageActionType[];
};
export declare function PageActions(props: PageActionProps): JSX.Element | null;
export {};