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