UNPKG

lune-ui-lib

Version:

Lune UI Components Library

13 lines (12 loc) 349 B
import { FC } from 'react'; import { FilterFunction } from './AutocompleteSelect'; export interface Props { value: string; onChange: (value: string | undefined) => void; error?: string; placeholder?: string; disabled?: boolean; filter?: FilterFunction; } declare const CountryPicker: FC<Props>; export default CountryPicker;