import React from 'react'; import { SelectOptionType } from './interfaces'; declare type SelectMenuProps = { menuPosition?: 'absolute' | 'fixed'; menuZIndex?: number; onOptionClick: (opt: SelectOptionType) => void; options: SelectOptionType[]; wrapperElementRef: React.RefObject; selectedOptionLabel?: string; selectMenuWidth?: string; }; declare const SelectMenu: React.FC; export default SelectMenu;