import { BaseComponentContext } from './BaseComponentContext.js'; export type SelectOptionContext = BaseComponentContext & { selected: boolean; id: string | number; useId: boolean; option: { value: string | number; label: string; }; attrs: Record; };