import { TypeaheadProps as ReactTypeaheadProps } from "react-bootstrap-typeahead/types/types"; import 'react-bootstrap-typeahead/css/Typeahead.css'; import { SpacingType } from "../../../types"; export interface TypeaheadProps { size?: SpacingType; controlledSort?: boolean; onInputChange?: (text: string) => void; type: 'normal' | 'async'; loading?: boolean; resultsPerPage?: number; onPaginate?: () => void; [props: string]: any; } export declare const Typeahead: ({ size, options, onInputChange, controlledSort, type, loading, resultsPerPage, onPaginate, ...props }: TypeaheadProps & ReactTypeaheadProps) => import("@emotion/react/jsx-runtime").JSX.Element;