import * as React from 'react'; import { BaseProps } from "../../../../utils/types"; import { IconType } from "../../../../common.type"; export declare type ActionButtonType = 'outlined' | 'rounded'; export interface ActionButtonProps extends BaseProps { name?: string; size: number; type?: ActionButtonType; iconType?: IconType; onClick?: (e: React.MouseEvent) => void; onKeyDown?: (e: React.KeyboardEvent) => void; children?: React.ReactNode; tabIndex?: React.DetailedHTMLProps, HTMLElement>['tabIndex']; } export declare const ActionButton: { (props: ActionButtonProps): React.JSX.Element; displayName: string; defaultProps: { size: number; type: string; }; }; export default ActionButton;