import React, { ReactElement } from "react"; interface ActionProps { disabled?: boolean; icon?: ReactElement; tooltip?: string; onClick?: () => void; shortcut?: string[]; "data-testid"?: string; } declare const Action: ({ icon, tooltip, onClick, shortcut, disabled, ...props }: ActionProps) => React.JSX.Element; export default Action;