import { ModelData, Model } from "@kubernetes-models/base";
/**
 * HelmFileParameter is a file parameter that's passed to helm template during manifest generation
 */
export interface IHelmFileParameter {
    /**
     * Name is the name of the Helm parameter
     */
    "name"?: string;
    /**
     * Path is the path to the file containing the values for the Helm parameter
     */
    "path"?: string;
}
/**
 * HelmFileParameter is a file parameter that's passed to helm template during manifest generation
 */
export declare class HelmFileParameter extends Model<IHelmFileParameter> implements IHelmFileParameter {
    "name"?: string;
    "path"?: string;
    constructor(data?: ModelData<IHelmFileParameter>);
}
export type { IHelmFileParameter as IComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1HelmFileParameter, HelmFileParameter as ComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1HelmFileParameter };
