import React from 'react'; export type Item = { label: string; value: string | number; }; type SelectComponentProps = { value: string; items: Item[]; label: string; onChange: (value: string) => void; }; export declare const SelectComponent: ({ value, items, label, onChange, }: SelectComponentProps) => React.JSX.Element; export {};