/// type LanguageOption = { value: string; label: string; }; type LanguageSelectProps = { value: string; options: readonly LanguageOption[]; onValueChange: (value: string) => void; currentLabel: string; className?: string; style?: React.CSSProperties; }; export declare const LanguageSelect: ({ value, options, onValueChange, currentLabel, className, style, }: LanguageSelectProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=language-select.d.ts.map