///
import { FieldInputProps, FormikProps } from 'formik';
export interface ISelectOption {
label: string | number;
value?: string | number;
[key: string]: any;
}
export interface ISelectField {
label: string;
field: FieldInputProps;
form: FormikProps;
theme: 'dark' | 'light';
type?: string;
selectOptions?: ISelectOption[];
onChange?: (e: any) => void;
}
interface IOtherProps {
[key: string]: any;
}
export declare const NativeSelectField: ({ label, type, field, selectOptions, form: { touched, errors, setFieldValue }, theme, onChange, }: ISelectField & IOtherProps) => JSX.Element;
export {};