import { SelectOption } from './select-option'; export interface LoadDictionaryEvent { name: string; filter: Record; setOptions: (options: SelectOption[]) => void; setError: (error: string) => void; }