import { VoiceResources } from './voiceResources'; export declare class Voice { 'header'?: string; 'body': string; 'type': string; 'footer'?: Voice.FooterEnum; 'other'?: Voice.OtherEnum; 'resources'?: VoiceResources; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace Voice { enum FooterEnum { Empty } enum OtherEnum { Empty } }