import React, { FC, CSSProperties } from 'react';
export interface ICockpitTabs {
    item: {
        label: string;
        value: string;
        children?: React.ReactNode;
    }[];
    onChange: (value: string) => void;
    defaultActiveKey?: string;
    type?: 'link' | 'button';
    className?: string;
    style?: CSSProperties;
}
declare const CockpitTabs: FC<ICockpitTabs>;
export default CockpitTabs;
