UNPKG

jslib-nightly

Version:

SheerID JavaScript Library

22 lines (21 loc) 839 B
import { Organization, DatabaseId, Country, Locale } from '../../../lib/types/types'; interface TypeaheadProps { onChange: any; programId: DatabaseId; inputHtmlId: string; autoFocus?: boolean; className?: string; countryCode?: Country; disabled?: boolean; minimumSearchValueLength?: number; placeholder?: string; value?: Organization; openOrgSearchEnabled?: boolean; orgSearchUrl?: string; orgSearchTags?: string; isRequired?: boolean; locale?: Locale; urlAddSchoolForm?: string; } export declare const TypeaheadComponent: ({ onChange, programId, className, countryCode, disabled, minimumSearchValueLength, placeholder, value, inputHtmlId, openOrgSearchEnabled, orgSearchUrl, orgSearchTags, isRequired, locale, urlAddSchoolForm, }: TypeaheadProps) => JSX.Element; export {};