import { Codegen, Context } from './internal/codegen'; export interface AlertChannelSubscriptionResource { alertChannelId: number; groupId?: number; checkId?: string; } export declare class AlertChannelSubscriptionCodegen extends Codegen { describe(resource: AlertChannelSubscriptionResource): string; prepare(logicalId: string, resource: AlertChannelSubscriptionResource, context: Context): void; gencode(logicalId: string, resource: AlertChannelSubscriptionResource, context: Context): void; }