import { SelectReducerActions } from './types'; import { SelectOptionType } from '../types'; export declare const selectActions: { showOptions: () => SelectReducerActions; hideOptions: () => SelectReducerActions; setPlaceholder: (placeholder: string) => SelectReducerActions; setSearchPhrase: (searchPhrase: string) => SelectReducerActions; setFilteredOptions: (options: SelectOptionType[]) => SelectReducerActions; setSelectionIndex: (index: number | null) => SelectReducerActions; toggleSelectionMode: (inSelectionMode: boolean) => SelectReducerActions; };