/** * Defines the props structure for FilterSelect. * * @since 3.10.0 */ interface FilterSelectProps { defaultValue?: string; items: [value: string, label: string][]; onChange: ( event: React.ChangeEvent ) => void; } /** * Returns a select element according to the passed props. * * @since 3.10.0 * * @param {FilterSelectProps} props The component's props. * * @return {JSX.Element} The JSX Element. */ export const Select = ( { defaultValue, items, onChange }: FilterSelectProps ): JSX.Element => { return ( ); };