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