interface DropdownProps { options: ReadonlyArray; onSelection: (option: TOption) => void; } function Dropdown ({ options, onSelection }: DropdownProps) { return ( // implementation skipped for article clarity ) }