import { FormVariant, ElementSize } from '../FieldWrapper'; export interface SelectProps { name: string; label?: string; variant?: FormVariant; size?: ElementSize; radius?: 'none' | 'sm' | 'md' | 'lg' | 'full'; shadow?: 'none' | 'sm' | 'md' | 'lg'; colorScheme?: 'blue' | 'emerald' | 'purple' | 'rose' | 'slate'; options?: { label: string; value: string; }[]; value?: string; onChangeValue?: (val: string) => void; required?: boolean; className?: string; } export default function Select({ name, label, variant, size, radius, shadow, colorScheme, options, value, onChangeValue, required, className }: SelectProps): import("react/jsx-runtime").JSX.Element;