// License: LGPL-3.0-or-later import {Component} from "react"; export interface WrapperProps { onChange?: Function letterNavigation?: boolean activeTabId?: string tag?: string [prop: string]: any } interface TabListProps { tag?: string [prop: string]: any } interface TabProps { id: string active?: boolean letterNavigationText?: string tag?: string [prop: string]: any } interface TabPanelProps { tabId: string active?: boolean tag?: string [prop: string]: any } export class TabPanel extends Component { } export class Tab extends Component { } export class TabList extends Component { } export class Wrapper extends Component { }