import * as React from 'react' import { IconProps } from '../icon' import { StylableComponentProps } from '../theme' export interface ActionBoxProps extends StylableComponentProps { hidden?: boolean } export interface ActionNodeProps extends StylableComponentProps { icon: string iconProps?: IconProps, onClick: (e: React.MouseEvent) => any disabled?: boolean strokeIcon?: boolean }