import React from "react"; interface TabStripProps { eventKey: string; wrapped?: boolean; className?: string; onClick?: (e: any) => void; scrollTo?: (element: HTMLElement) => void; children: React.ReactNode; [x: string]: any; } export declare const TabStripItem: ({ eventKey, wrapped, className, onClick, scrollTo, children, ...props }: TabStripProps) => React.JSX.Element; export {};