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 IFunctionSettingsProps { formik: FormikProps; isNew?: boolean; functionDef: IAmazonFunction; } export declare class FunctionSettings extends React.Component implements IWizardPageComponent { validate: () => any; render(): JSX.Element; }