import React from 'react'; import type { Application } from '@spinnaker/core'; import type { IFunctionFromStateParams } from './AmazonFunctionDetails'; import type { IAmazonFunction } from '../../domain'; export interface IFunctionActionsProps { app: Application; functionDef: IAmazonFunction; functionFromParams: IFunctionFromStateParams; } export interface IFunctionActionsState { application: Application; } export declare class FunctionActions extends React.Component { constructor(props: IFunctionActionsProps); componentDidMount(): void; editFunction: () => void; deleteFunction: () => void; private entityTagUpdate; render(): JSX.Element; }