import type { Ref } from 'vue'; import type { FormOption } from '@inkline/inkline/types'; export interface SelectOption extends FormOption { active?: boolean; } export interface SelectInjection { value: Ref; disabled: Ref; idField: Ref; onInput: (option: SelectOption) => void; }