import React from 'react';
import { TdTabsProps } from './type';
import { StyledProps } from '../common';
export interface TabsProps extends TdTabsProps, StyledProps {
    children?: React.ReactNode;
}
declare const Tabs: React.FunctionComponent<TabsProps & React.RefAttributes<HTMLDivElement>> & {
    TabPanel: React.FC<import("./TabPanel").TabPanelProps>;
};
export default Tabs;
