UNPKG

@sajari/sdk-react

Version:
10 lines (9 loc) 297 B
/// <reference types="react" /> import { CSSObject } from "@emotion/core"; interface TypeaheadProps { inputValue: string; completion?: string; styles?: CSSObject; } export declare function Typeahead({ inputValue, completion, styles }: TypeaheadProps): JSX.Element; export {};