import { FC, ReactElement, ReactNode } from 'react'; export interface SelectOption { icon?: ReactElement; label: ReactNode; labelSelected?: string; value: string; } export type SelectOptions = SelectOption[]; export interface SelectProps { emptyMessage?: string; isDisabled?: boolean; isInvalid?: boolean; label?: string; maxH?: string; name?: string; onChange: (e: string) => void; options: SelectOptions; placeholder: string; value?: string; } declare const Select: FC; export { Select };