interface SheetCommentsWriterOptions { id: number; workbook: any; } declare class SheetCommentsWriter { id: number; count: number; private _worksheet; private _workbook; private _sheetRelsWriter; private _commentsStream?; private _vmlStream?; vmlRelId?: string; startedData?: boolean; constructor(worksheet: any, sheetRelsWriter: any, options: SheetCommentsWriterOptions); get commentsStream(): any; get vmlStream(): any; private _addRelationships; private _addCommentRefs; private _writeOpen; private _writeComment; private _writeClose; addComments(comments: any[]): void; commit(): void; } export { SheetCommentsWriter };