import { HTMLAttributes, FC } from 'react'; export interface Props extends HTMLAttributes { label: any; value: any; options: any; onChange: any; } export declare const SelectByImage: FC;