import React from 'react';
import type { IPivotProps, IPivotStyles, IPivotItemProps } from '@fluentui/react';
import { Pivot, PivotItem } from '@fluentui/react';
export { PivotItem as UITabsItem };
export { IPivotItemProps as UITabsItemProps };
export { Pivot as UIPivot };
export { IPivotProps as UIPivotProps };
export { IPivotStyles as UIPivotStyle };
export interface UITabsProps extends IPivotProps {
    items: string[];
}
/**
 * UITabs component.
 * based on https://developer.microsoft.com/en-us/fluentui#/controls/web/pivot
 *
 * @exports
 * @class UITabs
 * @extends {React.Component<IPivotProps, {}>}
 */
export declare class UITabs extends React.Component<UITabsProps, {}> {
    /**
     * Initializes component properties.
     *
     * @param {UITabsProps} props
     */
    constructor(props: UITabsProps);
    protected setTabsStyle: () => Partial<IPivotStyles>;
    /**
     * @returns {JSX.Element}
     */
    render(): JSX.Element;
}
//# sourceMappingURL=UITabs.d.ts.map