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