import React from 'react';
declare type PanelProps = {
    title: string;
    id: string;
    isActive?: boolean;
    isCache?: boolean;
    children: React.ReactNode;
};
export declare const BeeTabPanel: React.FC<PanelProps>;
declare type TabsProps = {
    activeKey: string;
    children: React.ReactNode;
    onTabsChange?: (val: string) => void;
};
declare const BeeTabs: {
    (props: TabsProps): JSX.Element;
    BeeTabPanel: React.FC<PanelProps>;
};
export default BeeTabs;
