export interface AbstractBuilder { setStart(startSting: any): any; setBody(handleBody: any): any; setEnd(endString: any): any; build(): any; }