import { Codegen, Context } from './internal/codegen'; import { AlertChannelResource } from './alert-channel-codegen'; export interface EmailAlertChannelResource extends AlertChannelResource { type: 'EMAIL'; config: { address: string; }; } export declare class EmailAlertChannelCodegen extends Codegen { describe(resource: EmailAlertChannelResource): string; prepare(logicalId: string, resource: EmailAlertChannelResource, context: Context): void; gencode(logicalId: string, resource: EmailAlertChannelResource, context: Context): void; }