import React from 'react'; import { DefaultProps, FlowindSize, Selectors } from '../../../styles'; import { SelectItem } from '../types'; import useStyles from './select-items.styles'; export type SelectItemsStylesNames = Selectors; export interface SelectItemsProps extends DefaultProps { data: SelectItem[]; hovered: number; __staticSelector: string; isItemSelected?: (itemValue: string) => boolean; uuid: string; itemsRefs?: React.MutableRefObject>; onItemHover: (index: number) => void; onItemSelect: (item: SelectItem) => void; size: FlowindSize; itemComponent: React.FC; nothingFound?: React.ReactNode; creatable?: boolean; createLabel?: React.ReactNode; variant: string; } export declare function SelectItems({ data, hovered, classNames, styles, isItemSelected, uuid, __staticSelector, onItemHover, onItemSelect, itemsRefs, itemComponent: Item, size, nothingFound, creatable, createLabel, unstyled, variant, }: SelectItemsProps): React.JSX.Element; export declare namespace SelectItems { var displayName: string; }