import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface NotificationChannelProperties {
    SnsRoleName: Value<string>;
    SnsTopicArn: Value<string>;
}
export default class Inner_NotificationChannel extends ResourceBase<NotificationChannelProperties> {
    constructor(properties: NotificationChannelProperties);
}
