/** * Enum for element roles */ export declare enum ELEMENT_ROLES { /** * Used if element is an option */ OPTION = "option", /** * Used if element is an listbox */ LISTBOX = "listbox", /** * role alert is used for elements that needs to be announced to the user using screenreader */ ALERT = "alert", /** * role link is used for elements that needs to be announced to the user using screenreader */ LINK = "link", /** * role button is used for elements that needs to be announced to the user using screenreader */ BUTTON = "button", /** * role region is used for elements that needs to be announced to the user using screenreader */ REGION = "region" }