import type { ARIA } from '../types/aria.js';
import type { ARIAVersion, Matches, MLMLSpec } from '../types/index.js';
import type { ReadonlyDeep } from 'type-fest';
export declare function getARIA(specs: MLMLSpec, localName: string, namespace: string | null, version: ARIAVersion, matches: Matches): Omit<ReadonlyDeep<ARIA>, ARIAVersion | 'conditions'> | null;
