import React from 'react'; export interface SelectOption { label: string; value: string; hint?: string; } interface SelectProps { label: string; options: SelectOption[]; onSelect: (item: SelectOption) => void; } export declare const Select: React.FC; export {};