import { TypeEnum } from './envVar/TypeEnum';
/** Environment variables set into your webhosting account */
export interface EnvVarInput {
    /** Name of the variable */
    key: string;
    /** Type of variable set */
    type: TypeEnum;
    /** Value of the variable */
    value: string;
}
//# sourceMappingURL=EnvVarInput.d.ts.map