import type { ARIAVersion } from '@markuplint/ml-spec'; /** * Configuration options for the require-accessible-name rule. */ type Option = { /** The ARIA specification version to use for role and accessible name computation. */ ariaVersion: ARIAVersion; }; /** * Rule that requires elements with roles that need accessible names to have one. * * For each element exposed to the accessibility tree whose computed ARIA role * has `accessibleNameRequired` set to `true`, this rule verifies that the element * provides a non-empty accessible name. */ declare const _default: Readonly>; export default _default;