export declare class Campaign { 'id'?: string; 'name'?: string; 'locked'?: boolean; 'dateCreated'?: Date; 'publishedDate'?: Date; 'publishedStatus'?: boolean; 'errorMessage'?: string; 'timeZone'?: string; 'publishedTimeZone'?: string; 'createdByGlobalId'?: string; 'activeContactCount'?: number; 'completedContactCount'?: number; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }