import React from 'react'; import type { ButtonProps as BaseProps, ButtonSizeProps, ButtonViewProps, PinProps } from '@salutejs/plasma-core'; import { InteractionProps } from '../../mixins'; declare type ActionButtonBaseProps = Omit & Partial & Partial & InteractionProps & { pin?: Extract; }; export declare type ActionButtonProps = Omit; export declare const ActionButton: React.ForwardRefExoticComponent>; export {};