ponchojs
Version:
Poncho
13 lines (12 loc) • 419 B
TypeScript
/// <reference types="react" />
import { CommonInputProps } from './Form';
import { OptionsProps } from './SelectInput';
interface Props extends CommonInputProps<string> {
options: OptionsProps[] | undefined;
onChangeText: (text: string) => void;
loading?: boolean;
loadingText?: string;
multiple?: boolean;
}
export declare const AutoComplete: (props: Props) => JSX.Element;
export {};