import { Select } from '../../react-responsive-select'; import { IState } from '../../types/'; interface IArgs { event: KeyboardEvent; state: IState; RRSClassRef: Select; } /** * User types some keys in quick successsion whilst focused on a select - search for this combonation in their options */ export declare function handleAlphaNumerical({ event, state, RRSClassRef }: IArgs): void; export {};