import React__default from 'react'; interface SelectOption { label: string; value: string; } interface FormSelectProps { id?: string; name: string; label?: string; placeholder?: string; data: SelectOption[] | string[]; defaultValue?: string; value?: string; onChange: (value?: string) => void; classNames?: { wrapper?: string; label?: string; input?: string; }; required?: boolean; disabled?: boolean; } declare function FormSelect({ id, name, label, placeholder, data, defaultValue, value, onChange, classNames, required, disabled, ...rest }: FormSelectProps): React__default.JSX.Element; export { FormSelect, type FormSelectProps, type SelectOption };