import { TSESTree } from '@typescript-eslint/types'
/**
 * Checks whether a class element is supported by the sort-classes rule.
 *
 * Unknown elements should be ignored to avoid crashes with non-standard parsers
 * while letting known elements keep their ordering behavior.
 *
 * @param member - The class element to check.
 * @returns True when the element is a known, supported class member.
 */
export declare function isKnownClassElement(
  member: TSESTree.ClassElement,
): boolean
