UNPKG

baseui

Version:

A React Component library implementing the Base design language

32 lines (31 loc) 871 B
import React from 'react'; import type { PhoneInputLiteProps } from './types'; declare function PhoneInputLite(props: PhoneInputLiteProps): React.JSX.Element; declare namespace PhoneInputLite { var defaultProps: { 'aria-label': string; 'aria-describedby': any; 'aria-labelledby': any; clearable: boolean; focusLock: boolean; country: { label: string; id: string; dialCode: string; }; disabled: boolean; error: boolean; id: any; maxDropdownHeight: string; maxDropdownWidth: string; name: any; onCountryChange: () => void; onTextChange: () => void; overrides: {}; positive: boolean; required: boolean; size: "default"; text: string; }; } export default PhoneInputLite;