import { AssetOptionField } from '../components/v2/DialogSelectAsset/DialogSelectAsset.vue.d'; import { FilterOption } from './filterOption.type'; export type FilterOptions = { label?: string; fieldName?: string; placeholder?: string; exception?: boolean; static?: boolean; }; export type FilterOptionValues = { label?: string; value?: string; }; export type LoadingOptions = Partial>; export type FilterOptionsResponse = Partial>;