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: false;
} | {
    success: true;
    stat: string;
}>;
export { extractWorker };
