import type { Locale } from 'use-intl/core'; import getServerExtractor from './getServerExtractor.js'; type Return = ReturnType; declare function getExtractedImpl(namespace?: string): Promise; declare function getExtractedImpl(opts?: { locale: Locale; namespace?: string; }): Promise; declare const getExtracted: typeof getExtractedImpl; export default getExtracted;