import { DeployContext, DeployOutputType, PreDeployContext, ServiceConfig, ServiceContext, ServiceDeployer, UnDeployContext } from 'handel-extension-api'; import { StepFunctionsConfig } from './config-types'; export declare class Service implements ServiceDeployer { readonly producedDeployOutputTypes: DeployOutputType[]; readonly consumedDeployOutputTypes: DeployOutputType[]; readonly producedEventsSupportedTypes: never[]; readonly providedEventType: null; readonly supportsTagging: boolean; check(serviceContext: ServiceContext, dependenciesServiceContexts: Array>): string[]; deploy(ownServiceContext: ServiceContext, ownPreDeployContext: PreDeployContext, dependenciesDeployContexts: DeployContext[]): Promise; unDeploy(ownServiceContext: ServiceContext): Promise; }