import React from 'react'; import { type Country } from './countries'; export interface CountrySelectProps { value?: string; onChange?: (value: string) => void; onCountryChange?: (country: Country) => void; label?: string; required?: boolean; placeholder?: string; error?: string; hint?: string; searchable?: boolean; clearable?: boolean; showFlags?: boolean; disabled?: boolean; animate?: boolean; className?: string; } export declare const CountrySelect: React.FC;