import { BaseObject } from '../_common';
import { WeekAttributes } from './WeekAttributes';
export declare class Week extends BaseObject {
attributes: WeekAttributes;
Notes?: string;
constructor(attributes: WeekAttributes, options: {
notes?: string;
});
toXml(): string;
}