import { TSESTree } from '@typescript-eslint/types'
/**
 * Checks whether a node is a PropertyDefinition or AccessorProperty.
 *
 * @param node - The AST node to check.
 * @returns True if the node is a PropertyDefinition or AccessorProperty, false
 *   otherwise.
 */
export declare function isPropertyOrAccessorNode(
  node: TSESTree.Node,
): node is TSESTree.PropertyDefinition | TSESTree.AccessorProperty
