import React from 'react'; export interface SelectOption { label: string; value: string; } export interface SelectProps extends Omit, 'children'> { /** * The select options */ options: SelectOption[]; /** * The label for the select */ label?: string; /** * Helper text displayed below the select */ helperText?: string; /** * Placeholder text */ placeholder?: string; } /** * Select component with options * * @example * ```tsx *