import React from 'react'; import { list } from '../SelectTag/SelectRowList'; import { MultiOptionsEntity } from './SelectTag.types'; type Props = { selectOptions: MultiOptionsEntity[]; option: list; stringifyLabelKey: string; handleOnSelect: (val: string) => void; stringifyValueKey: string; index?: number; }; declare const _default: React.MemoExoticComponent<({ selectOptions, option, stringifyLabelKey, handleOnSelect, stringifyValueKey, index, }: Props) => JSX.Element>; export default _default;