import { Detector, DetectorOptions, Services } from './types'; declare class LanguageDetector { static type: 'languageDetector'; services: Services; detectorOptions: DetectorOptions; detectors: { [key: string]: Detector; }; constructor(services: Services, detectorOptions?: Partial); init(services: Services, detectorOptions?: Partial): void; detect(): string | string[]; cacheUserLanguage(): void; } export default LanguageDetector;