import type { TopicFilter } from './TopicFilter'; /** * List of filters that contains eventVersionId name and variables */ export type Filter = { eventVersionId?: string; /** * List of variable that contains address node name and filters */ topicFilters?: Array; id?: string; /** * The type of payload */ readonly type?: string; };