import React from 'react'; export interface SelectOption { value: string; label: string; icon?: React.ReactNode; disabled?: boolean; } export interface SelectProps extends Omit, 'onChange' | 'size'> { options: SelectOption[]; value?: string; onChange: (value: string) => void; placeholder?: string; label?: string; error?: string; hint?: string; searchable?: boolean; clearable?: boolean; className?: string; animate?: boolean; } export declare const Select: React.ForwardRefExoticComponent>;