@devfamily/admiral
Version:
Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.
9 lines (8 loc) • 317 B
TypeScript
/// <reference types="react" />
import { TabPane } from 'rc-tabs';
import { TabsProps } from './interfaces';
declare function InternalTabs({ type, className, size, centered, columnSpan, ...props }: TabsProps): JSX.Element;
export declare const Tabs: typeof InternalTabs & {
TabPane: typeof TabPane;
};
export {};