declare module 'react-searchable-dropdown' {
  interface SearchableProps {
    className?: string;
    value?: string;
    placeholder?: string;
    notFoundText?: string;
    noInput?: boolean;
    options: Array<{ value: string; label: string }>;
    onSelect?: (value: any) => void;
    listMaxHeight?: number;
  }
  
  const Searchable: React.FC<SearchableProps>;
  export default Searchable;
} 