/**
 * Kubernetes
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: unversioned
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * Variable is the definition of a variable that is used for composition. A variable is defined as a named expression.
 * @export
 * @interface IoK8sApiAdmissionregistrationV1beta1Variable
 */
export interface IoK8sApiAdmissionregistrationV1beta1Variable {
    /**
     * Expression is the expression that will be evaluated as the value of the variable. The CEL expression has access to the same identifiers as the CEL expressions in Validation.
     * @type {string}
     * @memberof IoK8sApiAdmissionregistrationV1beta1Variable
     */
    expression: string;
    /**
     * Name is the name of the variable. The name must be a valid CEL identifier and unique among all variables. The variable can be accessed in other expressions through `variables` For example, if name is "foo", the variable will be available as `variables.foo`
     * @type {string}
     * @memberof IoK8sApiAdmissionregistrationV1beta1Variable
     */
    name: string;
}
export declare function IoK8sApiAdmissionregistrationV1beta1VariableFromJSON(json: any): IoK8sApiAdmissionregistrationV1beta1Variable;
export declare function IoK8sApiAdmissionregistrationV1beta1VariableFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiAdmissionregistrationV1beta1Variable;
export declare function IoK8sApiAdmissionregistrationV1beta1VariableToJSON(value?: IoK8sApiAdmissionregistrationV1beta1Variable | null): any;
