UNPKG

jslib-nightly

Version:

SheerID JavaScript Library

8 lines (7 loc) 600 B
/// <reference types="react-intl" /> import React from 'react'; import { InputSelectComponentProps } from '../../../lib/types/types'; export declare const Country: ({ value, isErrored, options, onChange, onKeyDown, intl, placeholder, isRequired, }: InputSelectComponentProps) => JSX.Element; export declare const CountryComponent: React.ComponentClass<Pick<InputSelectComponentProps, "label" | "isErrored" | "onChange" | "onKeyDown" | "placeholder" | "value" | "isRequired" | "options">, any> & { WrappedComponent: React.ComponentType<InputSelectComponentProps & ReactIntl.InjectedIntlProps>; };