import { AlertChannel, AlertChannelProps } from './alert-channel'; export interface EmailAlertChannelProps extends AlertChannelProps { /** * The email address where to send the alert notifications. */ address: string; } /** * Creates an Email Alert Channel * * @remarks * * This class make use of the Alert Channel endpoints. */ export declare class EmailAlertChannel extends AlertChannel { address: string; /** * Constructs the Email Alert Channel instance * * @param logicalId unique project-scoped resource name identification * @param props email alert channel configuration properties * {@link https://www.checklyhq.com/docs/constructs/email-alert-channel/ Read more in the docs} */ constructor(logicalId: string, props: EmailAlertChannelProps); describe(): string; synthesize(): any; }