import { Construct } from 'constructs'; export interface HostedZoneDKIMAndVerificationRecordsProps { readonly domain: string; } export declare class HostedZoneDKIMAndVerificationRecords extends Construct { readonly verificationToken: string; readonly dkimTokens: string[]; constructor(scope: Construct, id: string, props: HostedZoneDKIMAndVerificationRecordsProps); }