import { ComponentProps } from 'react'; type Props = { error?: boolean; options: { label: string; value: string; }[]; } & ComponentProps<'select'>; declare const Select: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; export default Select;