import React from 'react';
import type { JSX } from 'react';
export declare enum TabsSize {
    SMALL = "small",
    MEDIUM = "medium"
}
export type TabItemProps = {
    label: string;
    disable?: boolean;
    onClick?: () => void;
    children: React.ReactNode;
};
type TabsProps = {
    children: React.ReactElement<TabItemProps>[];
    className?: string;
    size: TabsSize;
};
export declare function Tabs({ children, className, size }: TabsProps): JSX.Element;
export declare const TabContent: import("styled-components").StyledComponent<"div", any, {}, never>;
export {};
