import type * as eslint from 'eslint';
import type { Comment } from 'estree-jsx';
/**
 * @example
 * ```tsx
 * // this is the search comment
 * const findThisNode = 10
 * ^^^^^^^^^^^^^^^^^^^^^^^
 * ```
 */
export declare function getNodeAfterComment(source: eslint.SourceCode, comment: Comment): eslint.Rule.Node | null;
