import React from 'react'; import './index.less'; export declare const prefix = "c7n-custom-tabs"; export interface ITab { key: string; title: React.ReactNode; } export interface TabsProps { defaultActiveKey?: string; activeKey?: string; onChange?: (activeKey: string) => void; tabs: ITab[]; type?: 'button' | 'line'; color?: string; } declare const Tabs: React.FC; export default Tabs;