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