import React, { FC } from 'react'; import { SearchOptions, SelectItemProps } from '../../../../../models'; interface Props { id?: string | undefined; isOpen: boolean; items: SelectItemProps[]; name: string; onClose: () => void; onChange: (item: SelectItemProps[]) => void; refContentInput: HTMLDivElement | null; searchValue: string; selectedItems: SelectItemProps[]; isSearchable?: boolean; loading?: boolean; multiple?: boolean; searchOptions?: SearchOptions; visibleRows?: number; getRefSelectMenu: (refSelectMenu: React.MutableRefObject) => void; } export declare const SelectMenu: FC; export {}; //# sourceMappingURL=index.d.ts.map