import type { Configuration } from "../lib/types";
export interface PruneOptions {
    sourceNamespace: string;
    newNamespace: string;
    globPatterns: string[];
}
export interface PruneResult {
    locale: string;
    keyCount: number;
    success: boolean;
    error?: string;
}
export interface PruneResponse {
    success: boolean;
    message: string;
    keysCount: number;
    results?: PruneResult[];
}
export declare const createPrunedNamespaceAutomated: (config: Configuration, options: PruneOptions) => Promise<PruneResponse>;
//# sourceMappingURL=create-pruned-namespace-automated.d.ts.map