import type { ExtractedMessage, LinguiConfigNormalized } from "@lingui/conf";
import { ExtractedCatalogType } from "../types";
import { ExtractWorkerPool } from "../extractWorkerPool";
export declare function extractFromFiles(paths: string[], config: LinguiConfigNormalized): Promise<ExtractedCatalogType>;
export declare function mergeExtractedMessage(next: ExtractedMessage, messages: ExtractedCatalogType, config: LinguiConfigNormalized): void;
export declare function extractFromFilesWithWorkerPool(workerPool: ExtractWorkerPool, paths: string[], config: LinguiConfigNormalized): Promise<ExtractedCatalogType>;
