import * as React from "react"; import { AbstractPureComponent } from "../../common"; import { type TabId, type TabProps } from "./tab"; import type { TabsProps } from "./tabs"; import { type TabTitleProps } from "./tabTitle"; export interface TabPanelProps extends Pick, Pick, Pick { /** * Used for setting visibility. This `TabPanel` will be visibile when `selectedTabId === id`, with proper accessibility attributes set. */ selectedTabId: TabId | undefined; } /** * Wraps the passed `panel`. */ export declare class TabPanel extends AbstractPureComponent { render(): React.JSX.Element | undefined; }