/** * Created by Aneree on 10/12/20. */ import { RefObject } from 'react'; import * as React from 'react'; import { AllOptionsMap, GroupConfig, GroupedOptions, Option } from './types'; import { normalizeOptions } from '../baseui/select/utils'; import { Value } from '../select/types'; export declare const getNoResultsMsg: ({ isLoading, minimumInput, inputText, noResultsMsg, searchingText, emptyInputMsg, searchable, }: { isLoading: boolean; minimumInput: number; inputText: string; noResultsMsg?: React.ReactNode; searchingText: React.ReactNode; emptyInputMsg: string; searchable?: boolean | undefined; }) => string | React.ReactNode | undefined; export declare const shouldPaginate: (element: HTMLElement, paginationBuffer?: number) => boolean; export declare const getInputValue: (inputRef: RefObject) => string; export declare const arrayToGroupedOptions: (options: Array