import { BaseObject } from '../_common';
import { ZoneAttributes } from './ZoneAttributes';
export declare abstract class Zone extends BaseObject {
    attributes: ZoneAttributes;
    constructor(attributes: ZoneAttributes);
    abstract toXml(): string;
}
