export declare class DeploymentCleaner {
    private readonly context;
    private readonly namespace;
    private readonly onUpdate?;
    constructor(context: string, namespace: string, onUpdate?: (msg: string) => void);
    cleanupOldDeployments(appName: string, currentVersion: string): Promise<void>;
    private cleanupIngress;
    private cleanupServices;
    private cleanupDeployments;
}
//# sourceMappingURL=deploy-cleaner.d.ts.map