///
///
import * as SourceMap from 'source-map';
import * as acorn from 'acorn';
import * as ESTree from 'estree';
export declare function findLiteralNodesAfterBlockComment(ast: ESTree.Program, comments: Array, commentRegex: RegExp): {
commentMatch: RegExpMatchArray | null;
literal: string;
}[];
export default function CommentLoader(this: Webpack.Core.LoaderContext, source: string, sourceMap?: SourceMap.RawSourceMap): Promise;