UNPKG

eventx-design-system

Version:
19 lines 510 B
import React from 'react'; export interface SelectOption { value: string; label: string; disabled?: boolean; } export interface SelectProps { options: SelectOption[]; value?: string; onChange?: (value: string) => void; placeholder?: string; disabled?: boolean; size?: 'sm' | 'md' | 'lg'; variant?: 'default' | 'error' | 'success'; fullWidth?: boolean; className?: string; } export declare const Select: React.FC<SelectProps>; //# sourceMappingURL=Select.d.ts.map