/**
* CSS selectors for discovering interactive elements
*/
export const INTERACTIVE_ELEMENT_SELECTORS = {
buttons: 'button, [role="button"], input[type="submit"], input[type="button"]',
links: 'a[href]',
inputs: 'input:not([type="hidden"]), textarea, select',
toggles: '[role="switch"], [aria-expanded]',
tabs: '[role="tab"]',
menuItems: '[role="menuitem"], [role="menuitemcheckbox"], [role="menuitemradio"]',
disclosures: 'details, [aria-haspopup]'
} as const;
export type InteractiveElementType = keyof typeof INTERACTIVE_ELEMENT_SELECTORS;