import TabsAbstract, { TabsAbstractProps } from './TabsAbstract';
import { ListType, TextType } from '../../common/types';
import { Text } from '../text';
export type TabsTags = {
    body: ListType[];
    header: (TextType | Text)[];
    bodyHeightArray?: number[];
};
export type TabsProps = TabsAbstractProps & {
    list: TabsTags[];
};
export default class Tabs extends TabsAbstract {
    list: TabsTags[];
    constructor(props: TabsProps);
}
