import { Email } from './email'; import { Message } from './message'; import { Social } from './social'; import { Voice } from './voice'; import { Web } from './web'; export declare class Scenario { 'name': string; 'description': string; 'allowedUsers'?: Scenario.AllowedUsersEnum; 'allowedUserIds'?: string; 'message': Message; 'to'?: string; 'subject'?: string; 'label'?: string; 'email'?: Email; 'voice'?: Voice; 'web'?: Web; 'social'?: Social; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace Scenario { enum AllowedUsersEnum { Everyone, Selectedusers } }