import { LocalizedString, LocalizedStringDictionary, LocalizedStringFormatter, LocalizedStrings } from '@internationalized/string'; /** * Returns a cached LocalizedStringDictionary for the given strings. */ export declare function useLocalizedStringDictionary(strings: LocalizedStrings, packageName?: string): LocalizedStringDictionary; /** * Provides localized string formatting for the current locale. Supports interpolating variables, * selecting the correct pluralization, and formatting numbers. Automatically updates when the locale changes. * @param strings - A mapping of languages to localized strings by key. */ export declare function useLocalizedStringFormatter(strings: LocalizedStrings, packageName?: string): LocalizedStringFormatter;