import { Node } from '../../parser'; import type { Checkpoint, CommentMatcherHandler, CommentMatcherOptions, CommentMatcherValue } from '../types'; import { AbstractMatcher } from './abstract-matcher'; export declare class CommentMatcher extends AbstractMatcher { readonly comment: CommentMatcherValue; readonly handler: CommentMatcherHandler; constructor({ value, handler }: CommentMatcherOptions); canSkip(node: Node): boolean; match(checkpoint: Checkpoint): Checkpoint | null; } //# sourceMappingURL=comment-matcher.d.ts.map