import { Codegen, Context } from './internal/codegen/index.js'; import { AlertChannelResource } from './alert-channel-codegen.js'; export interface SlackAppAlertChannelResource extends AlertChannelResource { type: 'SLACK_APP'; config: { slackChannels: string[]; }; } export declare class SlackAppAlertChannelCodegen extends Codegen { describe(resource: SlackAppAlertChannelResource): string; prepare(logicalId: string, resource: SlackAppAlertChannelResource, context: Context): void; gencode(logicalId: string, resource: SlackAppAlertChannelResource, context: Context): void; }