import { IconProps } from './icon' import { StylableComponent } from '.' export interface ActionBoxProps extends StylableComponent { actions: Action[] hidden?: boolean } export interface Action extends StylableComponent { icon: string iconProps?: IconProps, tooltip?: string onClick: () => any disabled?: boolean strokeIcon?: boolean }