import * as React from "react"; declare const SUPPORTED_LOCALES: readonly ["en", "es", "fr", "de"]; export type Locale = (typeof SUPPORTED_LOCALES)[number]; export declare const LanguageSelector: React.FC<{ className?: string; /** Controlled value */ value?: string; /** Called when user selects a value */ onChange?: (val: string) => void; }>; export {};