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