index.d.ts
433 Bytes
import * as React from 'react';
import { TabPosition, AnimatedConfig } from '../interface';
export interface TabPanelListProps {
activeKey: React.Key;
id: string;
rtl: boolean;
animated?: AnimatedConfig;
tabPosition?: TabPosition;
destroyInactiveTabPane?: boolean;
}
export default function TabPanelList({ id, activeKey, animated, tabPosition, rtl, destroyInactiveTabPane, }: TabPanelListProps): JSX.Element;