Files
TestMesa/backend/frontend/node_modules/react-bootstrap/cjs/TabPane.d.ts
2024-12-17 13:23:11 -08:00

13 lines
539 B
TypeScript

import * as React from 'react';
import { EventKey, TransitionCallbacks } from '@restart/ui/types';
import { BsPrefixProps, BsPrefixRefForwardingComponent, TransitionType } from './helpers';
export interface TabPaneProps extends TransitionCallbacks, BsPrefixProps, React.HTMLAttributes<HTMLElement> {
eventKey?: EventKey;
active?: boolean;
transition?: TransitionType;
mountOnEnter?: boolean;
unmountOnExit?: boolean;
}
declare const TabPane: BsPrefixRefForwardingComponent<'div', TabPaneProps>;
export default TabPane;