import { ModelData, Model } from "@kubernetes-models/base";
/**
 * Filter holds the configuration for individual Helm test filters.
 */
export interface IFilter {
    /**
     * Exclude specifies whether the named test should be excluded.
     */
    "exclude"?: boolean;
    /**
     * Name is the name of the test.
     */
    "name": string;
}
/**
 * Filter holds the configuration for individual Helm test filters.
 */
export declare class Filter extends Model<IFilter> implements IFilter {
    "exclude"?: boolean;
    "name": string;
    constructor(data?: ModelData<IFilter>);
}
export type { IFilter as IComGithubFluxcdHelmControllerApiV2Filter, Filter as ComGithubFluxcdHelmControllerApiV2Filter };
