import * as React from "react"; export interface Props { className?: string; items?: any; small?: boolean; fullWidth?: boolean; position?: "horizontal"; wrapperClass?: string; } declare const Tabs: React.FC; export default Tabs;