import { AST } from "../type";
export type CreateComment = (text: string) => AST.Comment;
/**
 * 创建注释节点
 * @param text
 * @returns
 */
export declare let createComment: CreateComment;
