import { SelectHTMLAttributes, ClassAttributes } from 'react';
import { FieldHookConfig } from 'formik';
export interface SelectProps {
label?: string;
options?: any[];
}
export declare const Select: ({ label, options, ...props }: SelectProps & SelectHTMLAttributes & ClassAttributes & FieldHookConfig) => JSX.Element;