import { SerializedFunction } from '@win2win/shared';

export interface WidgetProps<T = any> {
  data: T;
  enabled: boolean;
  condition: SerializedFunction;
  navigateTo: string;
}
