import type { FormikErrors, 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 IFunctionDebugAndErrorHandlingProps { formik: FormikProps; isNew?: boolean; functionDef: IAmazonFunction; } export declare class FunctionDebugAndErrorHandling extends React.Component implements IWizardPageComponent { constructor(props: IFunctionDebugAndErrorHandlingProps); validate: (values: IAmazonFunctionUpsertCommand) => FormikErrors; render(): JSX.Element; }