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