import React from 'react';
export declare type TabProps = {
    isActive: boolean;
    title: string;
    isCloseable: boolean;
    onSelect: () => void;
    onClose: () => void;
    tabProps?: React.ButtonHTMLAttributes<{}>;
};
export declare function Tab(props: TabProps): React.ReactElement;
export declare function TabAddButton(props: {
    onClick: () => void;
}): JSX.Element;
export declare type TabsProps = {
    children: Array<React.ReactNode>;
    tabsProps?: React.HTMLAttributes<{}>;
};
export declare function Tabs(props: TabsProps): JSX.Element;
//# sourceMappingURL=Tabs.d.ts.map