import React from 'react'; import { FormikProps } from 'formik'; interface FMSelectProps { formik: FormikProps; name: string; label: string; description: string; type?: string; size?: 'small' | 'medium'; labelId: string; children: React.ReactNode; } declare const FMSelect: React.FC; export default FMSelect;