import { LinguiConfigNormalized } from "@lingui/conf";
import { FormatterWrapper } from "../api/formats/index.js";
export declare function extractFromBundleAndWrite(params: {
    entryPoint: string;
    bundleFile: string;
    linguiConfig: LinguiConfigNormalized;
    outputPattern: string;
    format: FormatterWrapper;
    template: boolean;
    locales: string[];
    clean: boolean;
    overwrite: boolean;
}): Promise<{
    success: false;
} | {
    success: true;
    stat: string;
}>;
