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