export declare function createSnsTopic(topicName: string): Promise<string>;
export declare function tagTopic(topicArn: string, tags?: Array<{
    Key: string;
    Value: string;
}>): Promise<void>;
export declare function subscribeSnsTopicToQueue(topicName: string, queueName: string): Promise<string | undefined>;
