WAI-ARIA defines the mechanisms to make existing webpages accessible, and they do not require using tags for their semantic meaning - quite the opposite. You use role attributes for this.
For example:
<div role="button">Click me.</div>
is perfectly accessible, and will be interpreted as a button, though semantically it's a div.