import { FC } from 'react'; import { ContentButtonProps } from '../button/button'; export interface PageActionsProps { /** 页面的主要操作,支持所有 Button 属性 */ primaryAction?: ContentButtonProps; /** 页面的辅助操作数组,支持所有 Button 属性 */ secondaryActions?: ContentButtonProps[]; } declare const PageActions: FC; export default PageActions;