import type { FormikProps } from 'formik'; import React from 'react'; import type { IWizardPageComponent } from '@spinnaker/core'; import type { IAmazonFunction } from '../../domain'; import type { IAmazonFunctionUpsertCommand } from '../../index'; export interface IFunctionEnvironmentVariablesProps { formik: FormikProps; isNew?: boolean; functionDef: IAmazonFunction; } export declare class FunctionEnvironmentVariables extends React.Component implements IWizardPageComponent { validate: (values: IAmazonFunctionUpsertCommand) => any; render(): JSX.Element; }