/**
 * The custom resource entry point.
 * @param event the CloudFormation custom resource event
 * @returns the response to the custom resource event
 */
export declare const handler: (event: any) => Promise<{
    PhysicalResourceId: string;
}> | {
    PhysicalResourceId: string;
};
