import { default as React } from 'react'; type THTMLButtonProps = React.ButtonHTMLAttributes & { as?: 'button'; }; type THTMLAnchorProps = React.AnchorHTMLAttributes & { as: 'a'; }; type TActionWrapperProps = THTMLButtonProps | THTMLAnchorProps; declare const ActionWrapper: React.FC; export default ActionWrapper;