import React from 'react';
type Child = {
    props: {
        label: string;
    } & TabsProps;
};
type TabsProps = React.PropsWithChildren<{
    children: Child[];
    className?: string;
}>;
export declare function Tabs({ children, className }: TabsProps): JSX.Element;
export declare const TabList: import("styled-components").StyledComponent<"ul", any, {}, never>;
export declare const TabContent: import("styled-components").StyledComponent<"div", any, {}, never>;
export {};
