/** * Baseline a11y interface that extends the component with must have types */ import { DuetLangObject } from "../utils/language-utils"; export interface A11yComponent { accessibleDescribedBy: string; accessibleLabelledBy: string; accessibleLabel?: string; accessibleLabels?: Record; accessibleLabelsDefault?: DuetLangObject | Record; accessibleDescription: string; accessibleDetails: string; }