import { JSX } from "solid-js"; import { EventKey } from "solid-bootstrap-core"; import { BsPrefixProps, BsPrefixRefForwardingComponent, TransitionType } from "./helpers"; import { TransitionCallbacks } from "solid-react-transition"; export interface TabPaneProps extends TransitionCallbacks, BsPrefixProps, JSX.HTMLAttributes { eventKey?: EventKey; active?: boolean; transition?: TransitionType; mountOnEnter?: boolean; unmountOnExit?: boolean; } declare const TabPane: BsPrefixRefForwardingComponent<"div", TabPaneProps>; export default TabPane;