1 | import * as React from "react";
|
2 | import { AbstractPureComponent } from "../../common";
|
3 | import { type TabId, type TabProps } from "./tab";
|
4 | import type { TabsProps } from "./tabs";
|
5 | import { type TabTitleProps } from "./tabTitle";
|
6 | export interface TabPanelProps extends Pick<TabProps, "className" | "id" | "panel">, Pick<TabsProps, "renderActiveTabPanelOnly" | "selectedTabId">, Pick<TabTitleProps, "parentId"> {
|
7 | |
8 |
|
9 |
|
10 | selectedTabId: TabId | undefined;
|
11 | }
|
12 |
|
13 |
|
14 |
|
15 | export declare class TabPanel extends AbstractPureComponent<TabPanelProps> {
|
16 | render(): React.JSX.Element | undefined;
|
17 | }
|