/** * Shape of a single option in a `` / `` component. * Lives in shared-types so both `@oslokommune/punkt-elements` and * `@oslokommune/punkt-react` can re-export the same canonical type. */ export interface IPktSelectOption { value: string; label: string; selected?: boolean; disabled?: boolean; hidden?: boolean; } export type TSelectOption = IPktSelectOption;