import React from 'react'; import type { FiasCountry, FiasAPIProvider } from '../types.js'; export interface FiasCountrySelectorProps { api: FiasAPIProvider; country?: FiasCountry; onValueChange?: (value?: FiasCountry) => void; limit?: number; allowArbitraryCountry?: boolean; } export declare class FiasCountrySelector extends React.Component { static __KONTUR_REACT_UI__: string; static displayName: string; private readonly locale; render(): JSX.Element; private createItemsSource; private renderItem; private renderValue; private renderNotFound; private valueToString; private handleValueChange; private onUnexpectedInput; }