import type { ResourceBase } from "./Common";
export declare type NotificationTopicType = 'resource.notification-topic';
export interface NotificationTopic extends ResourceBase {
    type: NotificationTopicType;
    topicName?: string;
    displayName?: string;
}
export declare const isNotificationTopic: import("@altostra/type-validations").ObjectOfTypeValidation<NotificationTopic>;
