import { type STSClient } from '@aws-sdk/client-sts'; /** * Manually builds the ARN of a topic based on the current AWS account and the topic name. * It follows the following pattern: arn:aws:sns::: * Doc -> https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html */ export declare const buildTopicArn: (client: STSClient, topicName: string) => Promise; export declare const clearCachedCallerIdentity: () => void;