import { _UnmarshalledCustomVerificationEmailTemplate } from "./_CustomVerificationEmailTemplate"; import * as __aws_sdk_types from "@aws-sdk/types"; /** *

A paginated list of custom verification email templates.

*/ export interface ListCustomVerificationEmailTemplatesOutput extends __aws_sdk_types.MetadataBearer { /** *

A list of the custom verification email templates that exist in your account.

*/ CustomVerificationEmailTemplates?: Array<_UnmarshalledCustomVerificationEmailTemplate>; /** *

A token indicating that there are additional custom verification email templates available to be listed. Pass this token to a subsequent call to ListTemplates to retrieve the next 50 custom verification email templates.

*/ NextToken?: string; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }