import type { Tree } from '@nx/devkit';
export declare function hasHelmClasses(tree: Tree, path: string, { component, classes }: HasHelmClassesSchema): boolean;
interface HasHelmClassesSchema {
    /**
     * The name of the components that need to be checked.
     */
    component: string;
    /**
     * The classes that need to be checked for.
     */
    classes: string[];
}
export declare function updateHelmClasses(tree: Tree, path: string, { component, classesToAdd, classesToRemove }: UpdateHelmClassesSchema): string;
interface UpdateHelmClassesSchema {
    /**
     * The name of the components that need to be updated.
     */
    component: string;
    /**
     * The classes that need to be removed from the components.
     */
    classesToRemove: string[];
    /**
     * The classes that need to be added to the components.
     */
    classesToAdd: string[];
}
export {};
