import { IGetLocalizedValueOptions, ILocalizedValue } from '../utils'; type IUseLocalizeValueOptions = IGetLocalizedValueOptions & { locale?: string; }; declare function useLocalizedValue(value: ILocalizedValue, options?: IUseLocalizeValueOptions): T | undefined; type IUseGetLocalizeValueOptions = IUseLocalizeValueOptions; declare function useGetLocalizedValue(options?: IUseGetLocalizeValueOptions): (v: ILocalizedValue) => T | undefined; export { useGetLocalizedValue, useLocalizedValue }; //# sourceMappingURL=useLocalizedValue.d.ts.map