/// import { ComplexAction, DisableableAction, LoadableAction } from '../../types'; export interface Props { /** The primary action for the page */ primaryAction?: DisableableAction & LoadableAction; /** The secondary actions for the page */ secondaryActions?: ComplexAction[]; } export default function PageActions({ primaryAction, secondaryActions }: Props): JSX.Element;