// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; import "../../styles/BasicIA.css"; export interface IIAPivotProps { items: { key: string; text: string; disabled?: boolean; icon?: string; error?: boolean; unselectedBackgroundColor?: string; tooltip?: string; }[]; highlightColor: string; textColor?: string; selectedKey: string; style?: React.CSSProperties; select: (key: string) => void; asTabs?: boolean; tabBackgrondColor?: string; selectedTabBackgrondColor?: string; showNumber?: boolean; showIcon?: boolean; isMobile?: boolean; autoTabWidth?: boolean; height?: number; darkmode?: boolean; } export class IAPivot extends React.Component { constructor(props: IIAPivotProps); render(): JSX.Element; }