import { PlanStep } from '../PlanStep'; export declare class XmlPlanBuilder { private readonly planTimeScale; private xmlText; constructor(planTimeScale: number); static isXmlStart(outputLine: string): boolean; appendLine(outputLine: string): void; isComplete(): boolean; getPlanSteps(): Promise; private parseTimeStamp; }