import { default as React } from 'react'; import { InjectedIntl } from 'react-intl'; import { VerificationService, Country, FormSelectChoice, ViewModel } from '../../../lib/types/types'; type CountryComponentWrapperProps = { verificationService: VerificationService; intl: InjectedIntl; viewModelDraftDecorator?: (draft: ViewModel, countryChoice?: FormSelectChoice) => void; disabled?: boolean; }; type DeprecatedProps = { viewModel?: ViewModel; nextFocusField?: string; }; export declare const CountryComponentWrapper: React.ComponentClass, any> & { WrappedComponent: React.ComponentType; }; export {};