export type ExtractWorkerFunction = typeof extractWorker;
declare const extractWorker: (linguiConfigPath: string, entryPoint: string, bundleFile: string, outputPattern: string, template: boolean, locales: string[], clean: boolean, overwrite: boolean) => Promise<{
    success: boolean;
    stat?: string;
}>;
export {};
