import * as React from 'react' import { FieldProps, FormikProps, FormikValues } from 'formik' import { SelectOptionsType } from '..' export interface FSelectProps { label?: string field: FieldProps form: FormikProps options: Array fullWidth?: boolean margin?: 'none' | 'dense' | 'normal' } declare const FSelect: React.ComponentType export default FSelect