import { FC } from 'react'; export interface SelectProps { label: string; required?: boolean; value?: { value?: string; label?: string; }; } declare const ForwardRefSelect: FC; export default ForwardRefSelect;