interface PageActionsProps { actions: object | string[]; onAction: Function; } /** Renders the buttons at the bottom of a Page */ declare const PageActions: ({ actions, onAction }: PageActionsProps) => import("react/jsx-runtime").JSX.Element | null; export default PageActions;