import type { FC } from "react"; import type { ILocale } from "./config/types/index.d.mts"; import type { IComponentBaseProps } from "../../types/components/index.d.mts"; /** * Компонент вывода локали * @returns {ReactElement} */ declare const Locale: FC; export type { ILocale }; export { Locale };