import { Construct } from 'constructs';
import { Topic } from 'aws-cdk-lib/aws-sns';
export interface NotificationsTopicProps {
    projectName: string;
    notificationName: string;
}
export declare class NotificationsTopic extends Construct {
    readonly topic: Topic;
    constructor(scope: Construct, id: string, props: NotificationsTopicProps);
}
