import { BaseObject } from '../_common';
import { PlanAttributes } from './PlanAttributes';
export declare class Plan extends BaseObject {
attributes: PlanAttributes;
Name?: string;
constructor(attributes: PlanAttributes, options?: {
name?: string;
});
toXml(): string;
}