import * as ts from "typescript";
import { Transformation } from "../output/transformation";
export declare type ICommentVisitor = (fullText: string, comment: ts.CommentRange) => Transformation[] | undefined;
export interface ICommentVisitors {
    [i: number]: ICommentVisitor;
}
export declare const commentVisitors: ICommentVisitors;
