import { Codegen, Context } from './internal/codegen'; import { AlertChannelResource } from './alert-channel-codegen'; export interface SmsAlertChannelResource extends AlertChannelResource { type: 'SMS'; config: { number: string; name?: string; }; } export declare class SmsAlertChannelCodegen extends Codegen { describe(resource: SmsAlertChannelResource): string; prepare(logicalId: string, resource: SmsAlertChannelResource, context: Context): void; gencode(logicalId: string, resource: SmsAlertChannelResource, context: Context): void; }