import { ComponentClass, FunctionComponent } from 'react'; import { IPageActionButton, IPageActionButtonMultiple, IPageActionButtonSingle, IPageActionLink, IPageActionLinkSingle } from './PageAction'; export declare function PageActionButton(props: { action: IPageActionButton | IPageActionButtonSingle | IPageActionButtonMultiple | IPageActionLink | IPageActionLinkSingle; isSecondary?: boolean; wrapper?: ComponentClass | FunctionComponent; iconOnly?: boolean; selectedItem?: T; selectedItems?: T[]; isLink?: boolean; }): import("react/jsx-runtime").JSX.Element;