UNPKG

440 BTypeScriptView Raw
1import { CSSProperties, ForwardRefExoticComponent, PropsWithoutRef, RefAttributes } from 'react';
2export interface TabContentProps {
3 animated?: boolean | undefined;
4 animatedWithMargin?: boolean;
5 destroyInactiveTabPane?: boolean | undefined;
6 style?: CSSProperties | undefined;
7}
8declare const TabContent: ForwardRefExoticComponent<PropsWithoutRef<TabContentProps> & RefAttributes<HTMLDivElement>>;
9export default TabContent;