import * as ts from "typescript"; export declare function prefixNode(node: ts.Node, prefix: string): ts.FileTextChanges; export declare function suffixNode(node: ts.Node, suffix: string): ts.FileTextChanges; export declare function removeNode(node: ts.Node): ts.FileTextChanges; export declare function replaceNode(node: ts.Node, newText: string): ts.FileTextChanges; export declare function convertLineCommentToDocblock(sourceFile: ts.SourceFile, comment: ts.CommentRange): ts.FileTextChanges; export declare function convertBlockCommentToDocblock(sourceFile: ts.SourceFile, comment: ts.CommentRange): ts.FileTextChanges;