import { CSSProperties } from 'react'; import { ActionType } from '@/services/workflows'; interface Props { style?: CSSProperties; className?: string; type: ActionType; colored?: boolean; } declare function ActionIcon({ style, className, type, colored }: Props): JSX.Element | null; export default ActionIcon;