import { Localization } from 'locales'; import { PropsWithChildren } from 'react'; import { NestedKeys } from 'utils'; interface LocalizationProps extends PropsWithChildren { language: 'en' | 'ru'; customLabels: Partial; } interface LocalizationContextType { language: string; dictionary: Record; } type translationOptions = { defaultValue?: string; value?: number; plural?: boolean; vars?: Record; }; export declare const useLocalizationContext: () => LocalizationContextType; export declare const AltroneLocalization: ({ language, customLabels, children, }: LocalizationProps) => import("react/jsx-runtime").JSX.Element; export declare const useLocalization: () => (t: NestedKeys | string, config?: translationOptions) => string; export {};