import { CloudFormationCustomResourceEvent } from "aws-lambda";
interface Response {
    PhysicalResourceId: string;
}
export declare function handler(event: CloudFormationCustomResourceEvent): Promise<Response>;
export {};
