UNPKG

baseui

Version:

A React Component library implementing the Base design language

20 lines (19 loc) 532 B
import React from 'react'; import type { CountrySelectProps } from './types'; declare function CountryPicker(props: CountrySelectProps): React.JSX.Element; declare namespace CountryPicker { var defaultProps: { disabled: boolean; inputRef: { current: any; }; maxDropdownHeight: string; maxDropdownWidth: string; overrides: {}; size: "default"; error: boolean; positive: boolean; required: boolean; }; } export default CountryPicker;