import * as cdk from "aws-cdk-lib"; import * as constructs from "constructs"; interface Props { /** * The email address to add as a verified email in SES. */ emailAddress: string; } export declare class SesVerifyEmail extends constructs.Construct { route53RecordSets: cdk.IResolvable; constructor(scope: constructs.Construct, id: string, props: Props); } export {};