import { ActionModel, Field } from '@grafana/data'; import { ButtonProps } from '../Button/Button'; type ActionButtonProps = Omit & { action: ActionModel; }; /** * @internal */ export declare function ActionButton({ action, ...buttonProps }: ActionButtonProps): import("react/jsx-runtime").JSX.Element; export {};