UNPKG

@hhgtech/hhg-components

Version:
14 lines (13 loc) 472 B
import React from 'react'; import { LocaleType } from "../../../interfaces/types"; import { Option } from "./tooltipSelection"; export type Props = { languageOptions?: Option[]; locale: LocaleType; }; export declare const LanguageSwitcher: ({ languageOptions, locale }: Props) => React.JSX.Element; export declare const LanguageLabel: ({ locale, label, href, }: { locale: LocaleType; label: string; href?: string; }) => React.JSX.Element;