import { default as React, ReactNode, ComponentPropsWithoutRef } from 'react'; import { LayoutUtilProps } from '../../types'; type LocalizationProviderProps = ComponentPropsWithoutRef<"div"> & LayoutUtilProps & { children: ReactNode; translationData: ITranslations; }; export type TranslationResult = string | Translations | undefined; export interface Translations { [key: string]: TranslationResult; } export interface ITranslations { dir: "ltr" | "rtl"; locale?: string; translations: Translations; } export declare const LocalizationProvider: React.FC; export {};