import { default as React } from 'react'; interface LanguageSelectorProps { variant?: 'compact' | 'full'; className?: string; } /** * LanguageSelector - A comprehensive internationalization language selector component * * Features: * - Supports both compact and full variants * - Displays language flags and native names * - Integrates with react-i18next for language switching * - Automatically detects supported languages from i18next configuration * - Provides visual feedback and localStorage persistence * * @param variant - Display variant: "compact" for minimal UI, "full" for detailed form * @param className - Additional CSS classes */ export declare const LanguageSelector: React.FC; export {}; //# sourceMappingURL=LanguageSelector.d.ts.map