import React__default, { SelectHTMLAttributes } from 'react';
type NativeSelectProps = SelectHTMLAttributes;
interface SelectOption {
label: string;
value: string;
}
interface FormNativeSelectProps extends NativeSelectProps {
id?: string;
name: string;
label: string;
selectProps: NativeSelectProps;
data: SelectOption[] | string[];
defaultValue?: string;
classNames?: {
wrapper?: string;
label?: string;
input?: string;
};
}
declare function FormNativeSelect({ id, name, label, selectProps, data, defaultValue, classNames, required, disabled, ...rest }: FormNativeSelectProps): React__default.JSX.Element;
export { FormNativeSelect, type FormNativeSelectProps, type SelectOption };